Get Sourcing Results
Returns the current state of a sourcing run. Responds with 202 and status ‘processing’ while in progress, or 200 with the full ranked candidate list (or error details) when completed.
Returns the current state of a sourcing run. While the run is in progress the response isDocumentation Index
Fetch the complete documentation index at: https://docs.instaview.sk/llms.txt
Use this file to discover all available pages before exploring further.
202 Accepted with status: "processing". Once finished it becomes 200 OK with the full ranked candidate list (or error details if the run failed).
Overview
Use this endpoint to poll for results when you do not have a webhook endpoint configured. TherequestId is the value returned by POST /sourcing.
Polling Strategy
Response Examples
Still Processing (202 Accepted)
Completed (200 OK)
Failed (200 OK with status: "failed")
Multi-Tenant Isolation
If therequestId does not belong to the company associated with the authenticating API key, the API returns 404 REQUEST_NOT_FOUND. This is intentional — it prevents adversarial probing of active execution queues.Authorizations
API key for authentication using Bearer scheme
Path Parameters
The requestId returned by POST /sourcing (e.g. req_550e8400-…).
Response
Sourcing results (completed or failed)
Whether the response was successful.
true
Unique external identifier for this sourcing run.
"req_550e8400-e29b-41d4-a716-446655440000"
Current status of the run.
processing, completed, failed "completed"
ISO 8601 timestamp when the run was created.
"2025-01-01T00:00:00.000Z"
Running count of candidates found so far. Present when status = 'processing'.
8
Total number of candidates found before scoring.
42
Number of candidates that were AI-scored.
30
Human-readable status message. Present when status = 'processing'.
"The sourcing agent is actively analyzing candidates. Please poll again in 10 seconds."
Scored and ranked candidates. Present when status = 'completed'.
Machine-readable error code when status = 'failed'.
"AGENT_ERROR"
Human-readable error message when status = 'failed'.
"The sourcing agent encountered an unexpected error."
ISO 8601 timestamp when the run completed or failed.
"2025-01-01T00:01:30.000Z"