API Endpoints
Complete list of available API endpoints.
API Endpoints
Complete reference for all Automated Future API endpoints.
Projects
List Projects
GET /v1/projects
Returns a list of all projects you have access to.
Response:
Get Project
GET /v1/projects/:id
Returns details for a specific project.
Test Runs
Create Test Run
POST /v1/test-runs
Submit test results to Automated Future.
Request Body:
Response:
List Test Runs
GET /v1/test-runs?project_id=proj_123
Returns test runs for a project.
Query Parameters:
project_id(required) - Project IDpage(optional) - Page number (default: 1)per_page(optional) - Results per page (default: 20, max: 100)status(optional) - Filter by status:passed,failed,skipped
Test Results
Get Test Result
GET /v1/test-results/:id
Returns details for a specific test result.
Webhooks
List Webhooks
GET /v1/webhooks
Returns configured webhooks for your account.
Create Webhook
POST /v1/webhooks
Request Body:
Error Responses
All errors follow this format:
Common Error Codes:
invalid_request- Request validation failedunauthorized- Invalid or missing API keyforbidden- Insufficient permissionsnot_found- Resource not foundrate_limited- Too many requests