org:filings:read scope for the full catalog, historical
filings, change events, and related-record endpoints.ADJ_TOKEN to an API key before running these examples. See
Authentication.1curl "https://api.adjacent.markets/api/v1/public/filings?per_page=20"
1curl "https://api.adjacent.markets/api/v1/public/filings/filters"
id, title, feed, org_code, status,
status_date, and doc_count. The feed tells you which CFTC registry
provided the row.12curl -H "Authorization: Bearer $ADJ_TOKEN" \ "https://api.adjacent.markets/api/v1/filings?search=bitcoin&per_page=20"
seq
from each response, then pass it as since_seq on the next request.12curl -H "Authorization: Bearer $ADJ_TOKEN" \ "https://api.adjacent.markets/api/v1/filings/events?since_seq=100"
kind to decide what to refresh. A status change updates the
filing record. A documents-added event means you can request the attachment
text again.12345678curl -H "Authorization: Bearer $ADJ_TOKEN" \ "https://api.adjacent.markets/api/v1/filings/FILING_ID" curl -H "Authorization: Bearer $ADJ_TOKEN" \ "https://api.adjacent.markets/api/v1/filings/FILING_ID/actions" curl -H "Authorization: Bearer $ADJ_TOKEN" \ "https://api.adjacent.markets/api/v1/filings/FILING_ID/markdown"