API ReferenceJobs

Get crawl map

GET
/api/v1/jobs/{id}/crawl-map

Authorization

bearerAuth
AuthorizationBearer <token>

API key authentication. Include your API key in the Authorization header as Bearer rf_your_key.

In: header

Path Parameters

id*string

Job ID

Response Body

application/json

application/problem+json

curl -X GET "http://localhost:8080/api/v1/jobs/string/crawl-map"
{
  "completed": 0,
  "entries": [
    {
      "completed_at": "string",
      "depth": 0,
      "discovered_at": "string",
      "error_category": "string",
      "error_details": "string",
      "error_message": "string",
      "extract_duration_ms": 0,
      "fetch_duration_ms": 0,
      "id": "string",
      "llm_model": "string",
      "llm_provider": "string",
      "parent_url": "string",
      "status": "string",
      "token_usage_input": 0,
      "token_usage_output": 0,
      "url": "string"
    }
  ],
  "error_summary": {
    "by_category": {
      "property1": 0,
      "property2": 0
    },
    "has_rate_limit": true,
    "total": 0
  },
  "failed": 0,
  "job_id": "string",
  "max_depth": 0,
  "seed_url": "string",
  "total": 0
}
{
  "detail": "Property foo is required but is missing.",
  "errors": [
    {
      "location": "string",
      "message": "string",
      "value": null
    }
  ],
  "instance": "https://example.com/error-log/abc123",
  "status": 400,
  "title": "Bad Request",
  "type": "https://example.com/errors/example"
}