Detail endpoints¶
Load related people, organizations, locations, images, and custom extracted data through separate detail endpoints on each article.
Endpoints¶
| Method | Path | Doc |
|---|---|---|
GET |
…/articles/{article_id}/mentions |
List mentions |
GET |
…/articles/{article_id}/people |
List people |
GET |
…/articles/{article_id}/organizations |
List organizations |
GET |
…/articles/{article_id}/locations |
List locations |
GET |
…/articles/{article_id}/custom-records |
List custom records |
GET |
…/articles/{article_id}/images |
List images |
Each detail endpoint paginates independently. List mentions returns the full filtered set in one response — it is not paginated. Use Get article first to confirm the article id, or follow from List and search results.
Which route to use¶
| Goal | Route |
|---|---|
| Up to 10 inline images on article detail | Get article |
| One mixed list of people, orgs, and locations (not paginated) | List mentions |
| People with title, affiliation, and type fields | List people |
| Organizations with type fields | List organizations |
| Map-ready location geometry and addresses | List locations |
| Structured extracted records (contracts, etc.) | List custom records |
| Article images | List images |