Can ChatGPT get live sports odds?
Giving ChatGPT real-time sports odds with a custom GPT Action built on an OpenAPI spec, plus the MCP route for other assistants.
Not by itself: ChatGPT has no live odds feed and needs a data connection. The working pattern is a custom GPT with an Action pointed at a live odds API's OpenAPI spec. ParlayAPI publishes its full spec at parlay-api.com/openapi.json, authenticates with an X-API-Key header, and issues free keys, so an odds-aware GPT is a configuration task rather than a backend project.
More detail
The setup: create a custom GPT, add an Action, import the schema from https://parlay-api.com/openapi.json, and set API key authentication with the X-API-Key header. The GPT can then call the real endpoints per conversation, and because prices stay source-labeled, its answers can name the actual book behind each number instead of asserting a blend.
Keep the Action lean: the odds, props, and best-line endpoints cover most questions people actually ask an assistant. Discovery endpoints such as /v1/sports and /v1/meta/credit-costs are free to call, so the GPT can probe capabilities without spending the account's allowance.
Assistants that speak MCP have a shorter path: ParlayAPI runs a remote MCP endpoint at /mcp/http and ships the parlayapi-mcp server for local clients like Claude Desktop and Cursor. An agent can even provision its own user's free key through POST /v1/agent/signup and hand over a claim URL.
Endpoint
GET /openapi.json
curl 'https://parlay-api.com/openapi.json'
Why developers use it
- Full OpenAPI spec published for Action import
- Simple X-API-Key auth that GPT Actions support natively
- Remote MCP endpoint and agent signup for non-ChatGPT assistants
FAQ
Is there a ParlayAPI ChatGPT plugin?
ChatGPT's old plugin system is retired; the current mechanism is custom GPT Actions built from an OpenAPI spec, which ParlayAPI supports directly at /openapi.json.
Are the odds the GPT quotes real-time?
Each Action call fetches live prices at ask time over REST. Actions are request-and-response, so continuous push streaming does not apply to this pattern; the fetched prices are current as of the call.
What does it cost to run an odds GPT?
A free-tier key with 1,000 monthly credits covers personal use, and discovery endpoints are free. Heavier GPTs graduate to paid tiers listed at /pricing.
Related
/answers/odds-api-for-ai-agents/use-cases/custom-gpt-live-odds/mcp/answers/sports-odds-mcp-server