Skip to main content
GET
/
catchAll
/
monitors
/
pull
/
{monitor_id}
Get monitor results
curl --request GET \
  --url https://catchall.newscatcherapi.com/catchAll/monitors/pull/{monitor_id} \
  --header 'x-api-key: <api-key>'
{
  "monitor_id": "7f3a8b2c-1e4d-4a5b-9c8d-6e7f8a9b0c1d",
  "reference_job": {
    "query": "Series B funding rounds for SaaS startups",
    "context": "Focus on funding amount and company name"
  },
  "status": "Done",
  "cron_expression": "0 12 * * *",
  "timezone": "UTC",
  "run_info": {
    "first_run": "2025-10-23T12:00:00Z",
    "last_run": "2025-11-07T12:00:00Z"
  },
  "records": 487,
  "all_records": [
    {
      "record_id": "6983973854314692457",
      "record_title": "VulnCheck Raises $25M Series B Funding",
      "enrichment": {
        "enrichment_confidence": "high",
        "funding_amount": 25000000,
        "funding_currency": "USD",
        "funding_date": "2026-02-17",
        "investee_company": {
          "source_text": "VulnCheck",
          "confidence": 0.99,
          "metadata": {
            "name": "VulnCheck",
            "domain_url": "vulncheck.com",
            "domain_url_confidence": "high"
          }
        },
        "investor_company": {
          "source_text": "Sorenson Capital",
          "confidence": 0.99,
          "metadata": {
            "name": "Sorenson Capital",
            "domain_url": null,
            "domain_url_confidence": null
          }
        },
        "valuation": 25000000,
        "other_investors": "National Grid Partners, Ten Eleven Ventures, In-Q-Tel"
      },
      "citations": [
        {
          "title": "Exclusive: VulnCheck raises $25M funding to help companies patch software bugs",
          "link": "https://www.msn.com/en-us/money/other/exclusive-vulncheck-raises-25m-funding-to-help-companies-patch-software-bugs/ar-AA1WwdjW",
          "published_date": "2026-02-17T14:01:05Z",
          "id": "8760624448e9815f9fb4abd114c75e76",
          "job_id": "6269aa54-c332-4fff-8a65-0d4e82a365e8",
          "added_on": "2025-11-14T21:00:00Z"
        }
      ],
      "added_on": "2025-11-14T21:00:00Z",
      "updated_on": "2025-11-14T21:00:00Z"
    }
  ],
  "limit": 100
}

Authorizations

x-api-key
string
header
required

API key for authentication.

Path Parameters

monitor_id
string<uuid>
required

Monitor identifier.

Response

Monitor results retrieved successfully

monitor_id
string<uuid>
required

Unique identifier for the monitor.

Example:

"7f3a8b2c-1e4d-4a5b-9c8d-6e7f8a9b0c1d"

reference_job
object
required
status
string
required

Current monitor status or error message if monitor creation failed.

Example:

"Done"

cron_expression
string

The cron expression for a monitor schedule parsed from the text schedule you provide.

Standard cron format (minute hour day month day-of-week).

Example:

"0 12 * * *"

timezone
string

Timezone used for schedule execution.

Example:

"UTC"

run_info
object

Execution time range for this monitor.

records
integer
default:0

Total number of records collected across all monitor jobs.

Example:

487

all_records
object[]

Aggregated records from all jobs executed by this monitor. Each record includes structured data extracted from web sources with citations.

limit
integer | null

Record limit applied to this monitor's jobs.

Example:

100