API Reference
This section provides detailed documentation for the main REST API endpoints.
The FetchFox API uses JSON for request and response payloads. All requests must be authenticated with an API key.
Base URL:
https://fetchfox.ai/api/v2
Authentication: Bearer token via the
Authorization
headerResponse Format:
JSON
Endpoints
All endpoints are relative to the base URL.
Workflows
Get all workflows
Method:
GET
Endpoint:
/workflows
Example:
Get a specific workflow
Method:
GET
Endpoint:
/workflow/{workflow_id}
Example:
Create a new workflow
Method:
POST
Endpoint:
/workflows
Request Body: JSON representation of a workflow
Response: Returns a
workflowId
Example:
Running Workflows
Run a workflow
Method:
POST
Endpoint:
/workflows/{workflow_id}/run
Response: Returns a
jobId
Example:
Jobs
Get job details
Method:
GET
Endpoint:
/jobs/{job_id}
Response: A JSON containing job details including results, and job completion status.
Example:
Last updated