curl so you can run them directly in your terminal.
Register a developer account
Create your Predexy account by sending your email, password, and name to the registration endpoint. Your password must be at least 8 characters.A successful registration returns
201 with your account details and JWT tokens:If you see
EMAIL_EXISTS, an account already exists for that address. Log in instead (Step 2).Log in and get your session token
Log in with your email and password. The response includes a short-lived access token (15 minutes) and a refresh token (7 days). Copy the Response:
access_token — you’ll need it in the next step.Create an API key
API keys let your code authenticate without managing short-lived session tokens. Create one using your session’s access token. Give the key a descriptive name so you can identify it later in the Developer Console.The response includes the full key exactly once:
Fetch arbitrage opportunities
With your API key in hand, you can call the external arbitrage endpoint. This endpoint is designed for programmatic access and is rate-limited to 600 requests per minute.A successful response looks like this:Use
min_score, classification, category, and status query parameters to narrow results. Filter by guarantee=STRICT to see only opportunities that passed all policy checks.Browse markets with the discovery endpoint
The discovery endpoint returns canonical questions with unified index prices and divergence metrics across all seven platforms. This is the starting point for building research dashboards or finding questions to monitor.Example response item:
index_price is the volume-weighted consensus probability (0–1). divergence_category tells you how much platforms disagree: low is under 2%, medium is 2–5%, and high is above 5%.The discovery endpoint uses session authentication (
Authorization: Bearer), not an API key. For machine access to market data, check the API reference for available external endpoints.Next steps
You now have a working API key and know how to pull arbitrage opportunities and browse markets. From here:- Read the Authentication guide to understand token lifetimes, key rotation, and rate limits in detail.
- Explore the full API Reference to see all available endpoints, query parameters, and response schemas.
- Filter the arbitrage feed by
guarantee=STRICTandstatus=activeto focus on the highest-confidence opportunities.
