Quick Start

Use this guide to go from account creation to your first live market query. WagerKit is delivered as a hosted API and console, so the normal first path is user signup, API key creation, and read access to the prediction-market endpoints.

1. Create an account

Sign in with a magic link on the WagerKit app at http://44.224.135.253. After login, the dashboard and Developer Portal become available under your account.

Account actions such as profile, billing, webhook management, and payments use JWT session auth. Read-only API access uses API keys. New accounts start with 14 days of early access from first signup.

2. Create an API key

Open the Developer Portal and create a classic API key. New keys now include the full WagerKit permission set by default, so you only need to choose an expiration window.

create-api-key.jsonjson
{
"expires_in_days": 365
}

3. Query live markets

Start with the canonical market listing, then drill into the market detail endpoints for odds, history, integrity, and dossier artifacts.

terminalbash
export WK_API_KEY="wk_your_api_key_here"
curl "http://44.224.135.253/v1/markets?limit=5&offset=0" \
-H "Authorization: Bearer $WK_API_KEY"
curl "http://44.224.135.253/v1/markets/mkt_odds_628945" \
-H "Authorization: Bearer $WK_API_KEY"
curl "http://44.224.135.253/v1/odds?market_id=mkt_odds_628945" \
-H "Authorization: Bearer $WK_API_KEY"

4. Export and verify

The platform supports CSV and Parquet exports for downstream analysis, plus dossier PDF retrieval for audit and newsroom workflows.

exportsbash
curl "http://44.224.135.253/v1/history?market_id=mkt_odds_628945&from=1772776800&to=1772863200&bucket=1h&format=parquet" \
-H "Authorization: Bearer $WK_API_KEY" \
-o history.parquet
curl "http://44.224.135.253/v1/dossier?market_id=mkt_odds_628945&format=pdf" \
-H "Authorization: Bearer $WK_API_KEY" \
-o dossier.pdf

5. Next steps