List extraction results
GET
/api/v1/extraction/results
const url = 'https://dashboard.justcrawl.io/api/v1/extraction/results?limit=50';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://dashboard.justcrawl.io/api/v1/extraction/results?limit=50' \ --header 'Authorization: Bearer <token>'Returns extraction results for the caller’s org, optionally filtered by domain.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” domain
string
Filter by domain (e.g. walmart.com)
limit
integer
Responses
Section titled “ Responses ”List of extraction results
Media type application/json
object
items
Array<object>
object
id
string format: uuid
orgId
string format: uuid
jobId
string format: uuid
domain
string
schemaId
string
dataType
string
normalized
object
key
additional properties
any
rawBlobKey
Internal storage key for the raw HTML blob.
string
qualityCompleteness
number
qualityValidation
number
qualityComposite
number
latencyMs
integer
deliveredAt
string format: date-time
createdAt
string format: date-time
indexingPending
Count of this org’s jobs sitting in extraction_done awaiting the bulk-writer flush (Phase 1 Lane D). When > 0, the UI surfaces an indexing banner above the list.
integer
Example generated
{ "items": [ { "id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "orgId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "jobId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "domain": "example", "schemaId": "example", "dataType": "example", "normalized": {}, "rawBlobKey": "example", "qualityCompleteness": 1, "qualityValidation": 1, "qualityComposite": 1, "latencyMs": 1, "deliveredAt": "2026-04-15T12:00:00Z", "createdAt": "2026-04-15T12:00:00Z" } ], "indexingPending": 1}Missing or invalid authentication token
Media type application/json
object
error
string
Example generated
{ "error": "example"}Insufficient permissions
Media type application/json
object
error
string
Example generated
{ "error": "example"}