This walks you from an API key to a parsed response in three steps. You’ll need a terminal and eitherDocumentation Index
Fetch the complete documentation index at: https://docs.alterscope.org/llms.txt
Use this file to discover all available pages before exploring further.
curl, Python, or Node.
1. Get an API key
Create a key in the Developer Portal under your organization’s API Keys settings. A Free-tier key works for this guide. Keys are prefixedsk_live_.
2. Make your first request
This fetches one yield opportunity so you can see the envelope shape:3. Read the response
A successful call returns200 and a JSON envelope. The result is under data; the freshness and quality signal is under meta._agentic:
200, data contains one opportunity, and meta._agentic.freshness.status prints. If you got a 401 or 403, check Authentication and Scopes; for 429, see Rate limits; for any other status, see Errors.
Next steps
SDKs
TypeScript, Python, and Go clients.
Response envelope
The full
data + meta contract.Guides
Worked recipes for common workflows.
API reference
Every endpoint and parameter.