Skip to main content
This walks you from an API key to a parsed response in three steps. You’ll need a terminal and either 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 prefixed sk_live_.
Store the key in an environment variable, never in source control. Rotate it immediately if it leaks.

2. Make your first request

This fetches one yield opportunity so you can see the envelope shape:

3. Read the response

A successful call returns 200 and a JSON envelope. The result is under data; the freshness and quality signal is under meta._agentic:
You’re done when: the call returns 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.