Skip to main content
Source Information
  • url: The web page or document URL
  • domain: Extracted domain for filtering
  • title: Page title if available
  • method: How the source was retrieved
  • snippet: Relevant excerpt from the content
  • extracted: Structured data extracted from the source
Use this endpoint to audit what evidence was used in verification.
GET
/
v1
/
jobs
/
{job_id}
/
sources
List sources
curl --request GET \
  --url https://api.peepal.dev/v1/jobs/{job_id}/sources \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "source_id": "<string>",
      "url": "<string>",
      "domain": "<string>",
      "retrieved_at": "2023-11-07T05:31:56Z",
      "method": "exa.searchAndContents",
      "title": "<string>",
      "published_date": "<string>",
      "snippet": "<string>",
      "extracted": {},
      "source_quality": 0.5
    }
  ],
  "next_cursor": "<string>"
}
Retrieve a paginated list of all evidence sources collected during job processing. Sources include web pages, profiles, and documents used to verify claims.

Source Quality

Each source includes a source_quality score (0-1) indicating relevance and reliability.
curl -X GET "https://api.peepal.dev/v1/jobs/job_01ARZ3NDEKTSV4RRFFQ69G5FAV/sources?limit=25" \
  -H "x-api-key: YOUR_API_KEY"
{
  "data": [
    {
      "source_id": "src_01ARZ3NDEKTSV4RRFFQ69G5FAX",
      "url": "https://www.linkedin.com/in/ada-lovelace",
      "domain": "linkedin.com",
      "title": "Ada Lovelace | LinkedIn",
      "published_date": null,
      "retrieved_at": "2025-12-31T10:01:15Z",
      "method": "exa.searchAndContents",
      "snippet": "Ada Lovelace · Education: University of London · Mathematics degree",
      "extracted": {
        "education": [
          {
            "school": "University of London",
            "degree": "Mathematics"
          }
        ]
      },
      "source_quality": 0.92
    }
  ],
  "next_cursor": null
}

Authorizations

x-api-key
string
header
required

Path Parameters

job_id
string
required

Query Parameters

limit
integer
default:25
Required range: 1 <= x <= 100
cursor
string

Response

Paginated sources

data
object[]
required
next_cursor
string | null
required