POST
/
api
/
authors
curl --request POST \
  --url https://v3-api.newscatcherapi.com/api/authors \
  --header 'Content-Type: application/json' \
  --header 'x-api-token: <api-key>' \
  --data '{
  "author_name": "Joanna Stern",
  "lang": "en",
  "sources": [
    "wsj.com",
    "nytimes.com"
  ],
  "from_": "2024/01/01",
  "to_": "2024/06/30"
}'
{
  "status": "<string>",
  "total_hits": 123,
  "page": 123,
  "total_pages": 123,
  "page_size": 123,
  "articles": [],
  "user_input": {}
}

Authorizations

x-api-token
string
header
required

API Key to authenticate requests.

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

Body

application/json
Request body for searching articles by author based on specified criteria such as author name, language, country, source, and more.

The body is of type object.

Response

200
application/json
Authors search response containing a list of authors that match the search criteria. If no matches, returns a failed search response according to the defined schema.

The response model for the search requests applies to the Search, Latest Headlines, Search by link, and Authors endpoints. Response field behavior:

  • Required fields are guaranteed to be present and non-null.
  • Optional fields may be null or undefined if the data point is not presented or couldn't be extracted during processing.
  • To access article properties in the articles response array, use array index notation. For example, articles[n].title, where n is the zero-based index of the article object (0, 1, 2, etc.).
  • The nlp property within the article object articles[n].nlp is only available with NLP-enabled subscription plans.