Entity Attribution
Get impact coefficients showing how an entity’s attribute changes affect market prices.
Path Parameters
Entity slug (e.g., patrick-mahomes)
Response
{
"success": true,
"entitySlug": "patrick-mahomes",
"coefficients": [
{
"marketId": "market-uuid",
"marketTitle": "Chiefs to win Super Bowl",
"attribute": "injury_status",
"coefficient": -0.15,
"significance": 0.95
}
],
"count": 5
}
curl "https://api.marketmotion.xyz/api/attribution/entity/patrick-mahomes"
Market Attribution
Get entity attributions for a specific market — which entities most influence its price.
Path Parameters
Venue: polymarket, kalshi
Response
{
"success": true,
"venue": "polymarket",
"marketId": "market-uuid",
"entities": [
{
"slug": "patrick-mahomes",
"displayName": "Patrick Mahomes",
"coefficient": -0.15,
"attribute": "injury_status"
}
],
"count": 3
}
curl "https://api.marketmotion.xyz/api/attribution/market/polymarket/market-uuid"
Top Movers
Get entities with the largest recent market impact.
Query Parameters
Response
{
"success": true,
"movers": [
{
"entitySlug": "patrick-mahomes",
"displayName": "Patrick Mahomes",
"attributeChanged": "injury_status",
"marketImpact": 0.15,
"affectedMarkets": 5
}
],
"count": 10
}
curl "https://api.marketmotion.xyz/api/attribution/top-movers?hours=24&limit=10"
Predict Impact
Predict the market impact of a hypothetical attribute change.
Query Parameters
Attribute key (e.g., injury_status)
Hypothetical new value (e.g., out)
Response
{
"success": true,
"entity": "patrick-mahomes",
"attribute": "injury_status",
"predictions": [
{
"marketId": "market-uuid",
"marketTitle": "Chiefs to win Super Bowl",
"currentPrice": 0.35,
"predictedPrice": 0.20,
"priceChange": -0.15
}
],
"count": 5
}
curl "https://api.marketmotion.xyz/api/attribution/predict?entity=patrick-mahomes&attribute=injury_status&value=out"
Causality
Get causal relationships for an entity — which other entities it influences and is influenced by.
Path Parameters
Response
{
"success": true,
"entitySlug": "patrick-mahomes",
"causality": [
{
"targetEntity": "kansas-city-chiefs",
"direction": "causes",
"strength": 0.85,
"mechanism": "player_performance"
}
],
"count": 3
}
curl "https://api.marketmotion.xyz/api/attribution/causality/patrick-mahomes"
Top Causal
Get entities with the strongest causal influence across the graph.
Query Parameters
Response
{
"success": true,
"results": [
{
"entitySlug": "jerome-powell",
"displayName": "Jerome Powell",
"causalStrength": 0.92,
"affectedEntities": 15,
"affectedMarkets": 45
}
],
"count": 10
}
curl "https://api.marketmotion.xyz/api/attribution/top-causal?limit=10"