POST
/
v1
/
knowledge-graph
/
sources
Find Sources
curl --request POST \
  --url https://api.bigdata.com/v1/knowledge-graph/sources \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '{
  "query": "MT Newswire",
  "countries": [
    "US",
    "FR",
    "GB"
  ],
  "ranks": [
    "RANK_1",
    "RANK_2",
    "RANK_3"
  ],
  "categories": [
    "Transcripts",
    "Research",
    "Podcast",
    "Newsletters",
    "News",
    "Filings",
    "Expert Interviews"
  ]
}'
{
  "results": [
    {
      "id": "97C483",
      "name": "Personal Finance with Warren Ingram",
      "description": "Personal Finance with Warren Ingram is a program that provides practical advice on money management, including guidance on investing, retirement planning, and wealth creation, through its podcast.",
      "country": "ZA",
      "rank": "RANK_1",
      "retention": "FULL_HISTORY",
      "webpage": "TV and Radio Transcripts",
      "categories": [
        "podcasts"
      ],
      "packages": [
        "podcasts",
        "all"
      ],
      "subscribed": true
    }
  ],
  "metadata": {
    "request_id": "user_2k3Z4SerTUIieyCfQhGR5UF2Af3",
    "timestamp": "2025-09-30T07:23:05.019121+00:00"
  }
}

Authorizations

X-API-KEY
string
header
required

Body

application/json

Request body for finding sources. Each field is optional. However, you must provide at least one field to perform a valid search.

query
string

Text query to search for sources by name or description. (e.g.,'MT Newswire', 'Benzinga', 'Bloomberg')

Example:

"MT Newswire"

countries
string[]

Country codes using the ISO 3166-1 A-2 format (e.g., 'US' for United States, 'FR' for France, 'GB' for Great Britain)

Example:
["US", "FR", "GB"]
ranks
enum<string>[]

Source ranking from 1 to 5, where RANK_1 is the highest quality

Example:
["RANK_1", "RANK_2", "RANK_3"]
categories
enum<string>[]

Available source categories

Example:
[
"Transcripts",
"Research",
"Podcast",
"Newsletters",
"News",
"Filings",
"Expert Interviews"
]

Response

Successful response with source data

Response containing source results and metadata

results
object[]
required

Array of source results

metadata
object
required