Skip to content

Editorial Posts

Long-form analysis, opinion, and investigation content produced by the editorial desk.

Generated page

This page is generated from the published OpenAPI schema. Do not edit it by hand — run npm run generate:api.

GET /v1/editorial-posts

Editorial posts

Returns standalone single-story TNL articles, opinions, and investigations plus exhaustive daily, weekly, and monthly country analyses with explicit content types, automated editorial personas, source-story provenance, and retained research citations.

API key required

Query parameters

NameRequiredDescriptionExample
typenoFilter by article, opinion, investigation, or country analysis.analysis
countrynoFilter by exact country membership.Turkiye
categorynoFilter by exact category membership.Economic & Macro
limitnoMaximum posts to return. Maximum 100.20
offsetnoZero-based result offset.0

Example

bash
curl -sS "https://theneuralledger.com/v1/editorial-posts?type=analysis&country=Turkiye&category=Economic%20%26%20Macro" \
  -H "Authorization: Bearer $TNL_API_KEY"

Responses

StatusMeaning
200Successful response.
401Missing or invalid API key.
429Monthly API call limit exceeded.

GET /v1/editorial-posts/{idOrSlug}

Single editorial post

Returns one standalone editorial post by id or slug, including structured sections and source provenance.

API key required

Path parameters

NameRequiredDescriptionExample
idOrSlugyesStory id, title slug, entity value, impact path value, ticker, or saved-search id depending on the endpoint.

Example

bash
curl -sS "https://theneuralledger.com/v1/editorial-posts/example-slug" \
  -H "Authorization: Bearer $TNL_API_KEY"

Responses

StatusMeaning
200Successful response.
401Missing or invalid API key.
429Monthly API call limit exceeded.

The Neural Ledger API