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 requiredQuery parameters
| Name | Required | Description | Example |
|---|---|---|---|
type | no | Filter by article, opinion, investigation, or country analysis. | analysis |
country | no | Filter by exact country membership. | Turkiye |
category | no | Filter by exact category membership. | Economic & Macro |
limit | no | Maximum posts to return. Maximum 100. | 20 |
offset | no | Zero-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
| Status | Meaning |
|---|---|
200 | Successful response. |
401 | Missing or invalid API key. |
429 | Monthly 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 requiredPath parameters
| Name | Required | Description | Example |
|---|---|---|---|
idOrSlug | yes | Story 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
| Status | Meaning |
|---|---|
200 | Successful response. |
401 | Missing or invalid API key. |
429 | Monthly API call limit exceeded. |