What is an Entity?
An entity is a structured representation of a real-world thing that’s relevant to prediction markets. Unlike raw text or search results, entities have:- Typed attributes (not just key-value strings)
- Explicit relationships to other entities
- Market connections showing which markets they affect
Entity Types
| Type | Description | Examples |
|---|---|---|
person | Individual humans | Patrick Mahomes, Joe Biden, Elon Musk |
team | Sports teams | Kansas City Chiefs, Los Angeles Lakers |
org | Organizations | Federal Reserve, OpenAI, Democratic Party |
place | Locations | Arrowhead Stadium, Iowa, New York City |
league | Sports leagues | NFL, NBA, MLB |
asset | Financial assets | Bitcoin, Ethereum, NVIDIA |
Entity Structure
Attributes
Attributes are typed key-value pairs attached to entities. Every attribute includes provenance:Common Attributes by Type
- Person (Athlete)
- Person (Politician)
- Team
| Attribute | Type | Description |
|---|---|---|
position | string | Playing position |
jersey_number | number | Jersey number |
injury_status | enum | healthy, questionable, out |
team_slug | string | Current team reference |
Slugs
Every entity has a uniqueslug used in API paths:
- URL-safe (lowercase, hyphens)
- Human-readable
- Stable (won’t change)
patrick-mahomeskansas-city-chiefsjoe-bidenbitcoin
Categories
Entities are organized into categories and subcategories:Fetching Entities
Get Single Entity
List Entities
Search Entities
q parameter on the list endpoint.
Why Entities Matter
Machine-Readable
AI systems can directly consume entity data without parsing text or risking hallucinations.
Relationship Context
Understand how entities connect—a player to a team to a stadium to a city.
Market Mapping
Every entity links to relevant prediction markets, showing exposure.
Attributed Data
Every attribute includes source, timestamp, and confidence—full provenance.