Skip to main content
GET
/
catchAll
/
pull
/
{job_id}
Get job results
curl --request GET \
  --url https://catchall.newscatcherapi.com/catchAll/pull/{job_id} \
  --header 'x-api-key: <api-key>'
{
  "job_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "query": "Tech company earnings this quarter",
  "context": "Focus on revenue and profit margins",
  "validation_criteria": [
    "is_current_quarter",
    "contains_financial_data"
  ],
  "status": "job_completed",
  "processing_time": "15m",
  "sources_count": 59150,
  "total_records": 2865,
  "records": [
    {
      "record_id": "5262823697790152939",
      "enrichment": {
        "record_title": "Oracle Q1 2026 Earnings Exceed Expectations",
        "company_name": "Oracle",
        "quarter_identifier": "Q1 2026",
        "revenue": "$14.9 billion",
        "revenue_change": "up 12%",
        "profit_margin": "42% non-GAAP operating margin"
      },
      "citations": [
        {
          "title": "Oracle Reports Strong Q1 2026 Results",
          "link": "https://example.com/article",
          "published_date": "2025-09-26 08:54:20"
        }
      ]
    }
  ]
}

Authorizations

x-api-key
string
header
required

API key for authentication

Path Parameters

job_id
string<uuid>
required

Unique job identifier returned from the /catchAll/submit endpoint

Response

Results retrieved successfully

job_id
string<uuid>
required

Job identifier

status
string
required

Job status (should be job_completed when pulling results)

Example:

"job_completed"

total_records
integer
required

Total number of validated records extracted

Example:

2865

records
object[]
required

Array of extracted records with structured data and citations

query
string

Original natural language query

Example:

"Tech company earnings this quarter"

context
string

Context provided with the query

Example:

"Focus on revenue and profit margins"

validation_criteria
string[]

List of validation rules that were applied to filter results

Example:
[
"is_current_quarter",
"contains_financial_data"
]
processing_time
string

Total time taken to process the job

Example:

"15m"

sources_count
integer

Number of articles initially retrieved from sources

Example:

59150