POST
/
sources
curl --request POST \
  --url https://api.newscatcherapi.com/v2/sources \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "lang": "en",
  "countries": "US,CA",
  "topic": "business"
}'
{
  "message": "<string>",
  "sources": [
    "<string>"
  ],
  "user_input": {
    "lang": [
      "<string>"
    ],
    "countries": [
      "<string>"
    ],
    "topic": "<string>"
  }
}

Authorizations

x-api-key
string
header
required

API Key to authenticate requests.

To access the API, include your API key in the x-api-key header. To obtain your API key, complete the form or contact us directly.

Body

application/json

Response

200
application/json
OK

The response for a successful sources request.