{ "opencollection": "1.0.0", "info": { "name": "Local News AggregationCount Entities API", "version": "1.2.0" }, "request": { "auth": { "type": "apikey", "key": "x-api-token", "value": "{{x-api-token}}", "placement": "header" } }, "items": [ { "info": { "name": "Entities", "type": "folder" }, "items": [ { "info": { "name": "List entities", "type": "http" }, "http": { "method": "GET", "url": "https://local-news.newscatcherapi.com/catchAll/entities", "params": [ { "name": "page", "value": "", "type": "query", "description": "Page number to retrieve.\n" }, { "name": "page_size", "value": "", "type": "query", "description": "Number of entities per page." }, { "name": "search", "value": "NewsCatcher", "type": "query", "description": "Filter entities by name (case-insensitive substring match)." }, { "name": "status", "value": "", "type": "query" }, { "name": "entity_type", "value": "", "type": "query" }, { "name": "sort_by", "value": "", "type": "query" }, { "name": "sort_order", "value": "", "type": "query" } ] }, "docs": "Returns a paginated list of entities belonging to the authenticated organization. Supports filtering by status and entity type, and sorting by name, status, or creation date.\n" }, { "info": { "name": "Create entity", "type": "http" }, "http": { "method": "POST", "url": "https://local-news.newscatcherapi.com/catchAll/entities", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new company entity and begins background enrichment.\n\nThe entity status starts as `pending` and transitions to `ready` once\nenrichment completes. Provide as much identifying information as\npossible — `domain` is the highest-signal field because it is\nunambiguous.\n" }, { "info": { "name": "Create entities in batch", "type": "http" }, "http": { "method": "POST", "url": "https://local-news.newscatcherapi.com/catchAll/entities/batch", "body": { "type": "json", "data": "{}" } }, "docs": "Creates multiple entities in a single request. Each entity is processed independently — a failure in one does not affect others.\n\nReturns an array of `{id, status}` objects in the same order as the input array.\n" }, { "info": { "name": "Get entity", "type": "http" }, "http": { "method": "GET", "url": "https://local-news.newscatcherapi.com/catchAll/entities/:entity_id", "params": [ { "name": "entity_id", "value": "854198fa-f702-49db-a381-0427fa87f173", "type": "path", "description": "Unique entity identifier." } ] }, "docs": "Returns a single entity by ID with all attributes and current status." }, { "info": { "name": "Update entity", "type": "http" }, "http": { "method": "PATCH", "url": "https://local-news.newscatcherapi.com/catchAll/entities/:entity_id", "params": [ { "name": "entity_id", "value": "854198fa-f702-49db-a381-0427fa87f173", "type": "path", "description": "Unique entity identifier." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates one or more fields of an existing entity.\n" }, { "info": { "name": "Delete entity", "type": "http" }, "http": { "method": "DELETE", "url": "https://local-news.newscatcherapi.com/catchAll/entities/:entity_id", "params": [ { "name": "entity_id", "value": "854198fa-f702-49db-a381-0427fa87f173", "type": "path", "description": "Unique entity identifier." } ] }, "docs": "Permanently deletes an entity. The entity is removed from all\ndatasets and the search index. This operation cannot be undone.\n" } ] } ], "bundled": true }