{"id":3105,"date":"2026-07-13T10:00:00","date_gmt":"2026-07-13T10:00:00","guid":{"rendered":"https:\/\/oddspapi.io\/blog\/?p=3105"},"modified":"2026-06-21T18:02:02","modified_gmt":"2026-06-21T18:02:02","slug":"fixture-mapping-compliance-betradar","status":"publish","type":"post","link":"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/","title":{"rendered":"Fixture Mapping for Compliance: Join OddsPapi, Betradar &#038; Genius IDs (Python)"},"content":{"rendered":"<h2>Two Feeds, One Match: The Fixture Mapping Problem<\/h2>\n<p>If you run a regulated book or a trading desk, you almost certainly consume more than one data feed. A licensed stats provider (Betradar, Genius Sports) handles official scores and settlement, because your regulator requires an audited source of truth. Then you pull pricing from somewhere cheaper and broader, because a single licensed feed only carries the books its owner wants you to see.<\/p>\n<p>The moment you run two feeds, you inherit a join problem: <strong>which row in feed A is the same real-world match as which row in feed B?<\/strong> Betradar calls Spain vs Saudi Arabia event <code>66456998<\/code>. Genius calls it <code>15457158<\/code>. Your pricing layer calls it something else entirely. Get the join wrong and you settle bets against the wrong result, which in a compliance audit is not a bug, it is a liability.<\/p>\n<p>OddsPapi aggregates pricing from <strong>350+ bookmakers<\/strong>, and every fixture it returns ships with a pre-computed cross-provider ID map. You do not fuzzy-match team names. You read a key. This post shows the mapping table, the fill rates across providers, and a tested Python join that reconciles OddsPapi pricing back to your Betradar or Genius settlement feed.<\/p>\n<h2>The Old Way: Fuzzy Matching on Names and Kickoff Time<\/h2>\n<p>Without shared IDs, teams reconcile feeds by matching on participant name plus kickoff timestamp. It works until it doesn&#8217;t, and it fails in exactly the situations that matter most for compliance.<\/p>\n<figure class=\"wp-block-table\">\n<table>\n<thead>\n<tr>\n<th>Approach<\/th>\n<th>Name + Kickoff Fuzzy Match<\/th>\n<th>externalProviders ID Join (OddsPapi)<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>&#8220;Man Utd&#8221; vs &#8220;Manchester United&#8221;<\/td>\n<td>Breaks on naming variants<\/td>\n<td>Exact ID, no string logic<\/td>\n<\/tr>\n<tr>\n<td>Kickoff rescheduled 30 min<\/td>\n<td>Timestamp drifts, match fails<\/td>\n<td>ID is stable through reschedules<\/td>\n<\/tr>\n<tr>\n<td>Two same-name fixtures same day<\/td>\n<td>Ambiguous, picks wrong one<\/td>\n<td>Unique per event<\/td>\n<\/tr>\n<tr>\n<td>Audit defensibility<\/td>\n<td>&#8220;We think it matched&#8221;<\/td>\n<td>Deterministic key, logged<\/td>\n<\/tr>\n<tr>\n<td>Maintenance<\/td>\n<td>Hand-tuned alias tables<\/td>\n<td>Read one JSON field<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/figure>\n<p>The fuzzy approach also degrades silently. A name-normaliser that worked for the Premier League quietly mismatches a Brazilian S\u00e9rie B fixture at 2am, and you don&#8217;t find out until a settlement dispute. An ID join either resolves or returns null, and a null is something you can alert on.<\/p>\n<h2>The externalProviders Block<\/h2>\n<p>Every fixture from <code>GET \/v4\/fixtures<\/code> carries an <code>externalProviders<\/code> object. It is the same event, expressed in ten different providers&#8217; ID systems:<\/p>\n<pre class=\"wp-block-code\"><code>\"externalProviders\": {\n  \"betradarId\": 66456998,\n  \"betgeniusId\": 15457158,\n  \"pinnacleId\": 1620858188,\n  \"opticoddsId\": \"20260621440DD3DB\",\n  \"sofascoreId\": 15186840,\n  \"flashscoreId\": \"CASh7QGF\",\n  \"lsportsId\": 18487380,\n  \"mollybetId\": \"2026-06-21,458,4834\",\n  \"txoddsId\": null,\n  \"oddinId\": null\n}<\/code><\/pre>\n<p>That is the real block for <strong>Spain vs Saudi Arabia<\/strong> (World Cup, OddsPapi <code>id1000001666456998<\/code>), pulled live. The OddsPapi <code>fixtureId<\/code> is your primary key; the ten provider fields are foreign keys into everyone else&#8217;s world.<\/p>\n<h3>Coverage: Which IDs Are Actually Populated<\/h3>\n<p>Not every provider stamps every fixture. We sampled a five-day soccer window (1,011 fixtures) and measured how often each ID is present. Betradar is the workhorse, populated on 100% of fixtures, which makes it the safest universal join key:<\/p>\n<figure class=\"wp-block-table\">\n<table>\n<thead>\n<tr>\n<th>Provider<\/th>\n<th>Field<\/th>\n<th>Fill Rate (soccer)<\/th>\n<th>Type<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Betradar (Sportradar)<\/td>\n<td><code>betradarId<\/code><\/td>\n<td>100%<\/td>\n<td>Integer<\/td>\n<\/tr>\n<tr>\n<td>Pinnacle<\/td>\n<td><code>pinnacleId<\/code><\/td>\n<td>57%<\/td>\n<td>Integer<\/td>\n<\/tr>\n<tr>\n<td>Flashscore<\/td>\n<td><code>flashscoreId<\/code><\/td>\n<td>51%<\/td>\n<td>String hash<\/td>\n<\/tr>\n<tr>\n<td>OpticOdds<\/td>\n<td><code>opticoddsId<\/code><\/td>\n<td>35%<\/td>\n<td>String hash<\/td>\n<\/tr>\n<tr>\n<td>Genius Sports (BetGenius)<\/td>\n<td><code>betgeniusId<\/code><\/td>\n<td>25%<\/td>\n<td>Integer<\/td>\n<\/tr>\n<tr>\n<td>LSports<\/td>\n<td><code>lsportsId<\/code><\/td>\n<td>18%<\/td>\n<td>Integer<\/td>\n<\/tr>\n<tr>\n<td>Sofascore<\/td>\n<td><code>sofascoreId<\/code><\/td>\n<td>16%<\/td>\n<td>Integer<\/td>\n<\/tr>\n<tr>\n<td>Mollybet<\/td>\n<td><code>mollybetId<\/code><\/td>\n<td>8%<\/td>\n<td>Composite string<\/td>\n<\/tr>\n<tr>\n<td>TXOdds<\/td>\n<td><code>txoddsId<\/code><\/td>\n<td>rare<\/td>\n<td>Integer<\/td>\n<\/tr>\n<tr>\n<td>Oddin<\/td>\n<td><code>oddinId<\/code><\/td>\n<td>rare (esports)<\/td>\n<td>Integer<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/figure>\n<p>The practical takeaway: build your join on <code>betradarId<\/code> if your settlement feed is Betradar, and keep <code>betgeniusId<\/code> as the fallback if you are a Genius shop. Don&#8217;t assume the long-tail providers are present, code defensively for null.<\/p>\n<h2>The Tutorial: Build a Cross-Provider Mapping Table<\/h2>\n<h3>Step 1 \u2014 Authenticate<\/h3>\n<p>OddsPapi auth is a query parameter, never a header. One key, every endpoint.<\/p>\n<pre class=\"wp-block-code\"><code>import requests\n\nAPI_KEY = \"YOUR_API_KEY\"\nBASE = \"https:\/\/api.oddspapi.io\/v4\"\n\n# Smoke test\nr = requests.get(f\"{BASE}\/sports\", params={\"apiKey\": API_KEY})\nprint(r.status_code)  # 200<\/code><\/pre>\n<h3>Step 2 \u2014 Pull Fixtures and Extract the Map<\/h3>\n<p>Hit <code>\/fixtures<\/code> for a sport and date range (max 10 days apart), then flatten <code>externalProviders<\/code> into a clean row per match. This is your raw mapping table.<\/p>\n<pre class=\"wp-block-code\"><code>def fixture_map(sport_id, frm, to):\n    r = requests.get(f\"{BASE}\/fixtures\", params={\n        \"apiKey\": API_KEY, \"sportId\": sport_id, \"from\": frm, \"to\": to,\n    })\n    r.raise_for_status()\n    rows = []\n    for f in r.json():\n        ep = f.get(\"externalProviders\") or {}\n        rows.append({\n            \"oddspapi_id\": f[\"fixtureId\"],\n            \"match\": f\"{f['participant1Name']} v {f['participant2Name']}\",\n            \"kickoff\": f[\"startTime\"],\n            \"status\": f.get(\"statusName\"),\n            \"betradar\": ep.get(\"betradarId\"),\n            \"genius\": ep.get(\"betgeniusId\"),\n            \"pinnacle\": ep.get(\"pinnacleId\"),\n            \"opticodds\": ep.get(\"opticoddsId\"),\n            \"sofascore\": ep.get(\"sofascoreId\"),\n        })\n    return rows\n\nrows = fixture_map(10, \"2026-06-21\", \"2026-06-24\")\nprint(len(rows), \"fixtures mapped\")  # 685<\/code><\/pre>\n<h3>Step 3 \u2014 Build the Reverse Index (Their ID \u2192 OddsPapi ID)<\/h3>\n<p>Your settlement feed pushes you a Betradar event ID. You need to go the other way: from their ID back to OddsPapi&#8217;s <code>fixtureId<\/code> so you can attach pricing. Build a dictionary keyed by the provider you settle against.<\/p>\n<pre class=\"wp-block-code\"><code># Reverse index: betradar event id -> oddspapi fixture id\nby_betradar = {r[\"betradar\"]: r[\"oddspapi_id\"]\n               for r in rows if r[\"betradar\"]}\n\nprint(len(by_betradar), \"fixtures keyed by Betradar id\")  # 685\n\n# A Betradar event id arrives from your settlement feed:\nbetradar_event = 66456998\nopi_id = by_betradar.get(betradar_event)\nprint(opi_id)  # id1000001666456998<\/code><\/pre>\n<p>Because <code>betradarId<\/code> fills at 100%, this reverse index never silently drops a fixture. If you key on a sparser provider, guard the <code>.get()<\/code> and route misses to a manual-review queue rather than dropping them.<\/p>\n<h3>Step 4 \u2014 Join Pricing onto the Mapped Fixture<\/h3>\n<p>One detail that trips people up: <strong>the <code>\/odds<\/code> endpoint does not return <code>externalProviders<\/code><\/strong>. Pricing and mapping live in different responses. The shared key between them is the OddsPapi <code>fixtureId<\/code>. So the workflow is: map on <code>\/fixtures<\/code>, then fetch pricing on <code>\/odds<\/code> by the fixture id you resolved.<\/p>\n<pre class=\"wp-block-code\"><code>def pricing_for_external(provider_index, external_id):\n    opi_id = provider_index.get(external_id)\n    if opi_id is None:\n        return None  # send to manual-review queue\n    o = requests.get(f\"{BASE}\/odds\", params={\n        \"apiKey\": API_KEY, \"fixtureId\": opi_id,\n    }).json()\n    return o.get(\"bookmakerOdds\", {})\n\nbooks = pricing_for_external(by_betradar, 66456998)\nprint(len(books), \"books priced via the Betradar -> OddsPapi join\")  # 18\nprint(sorted(books)[:6])\n# ['ballybet', 'bet365', 'betmgm', 'betparx', 'betrivers', 'borgata']<\/code><\/pre>\n<p>That is the whole reconciliation loop: your regulator-facing feed says &#8220;event 66456998 finished,&#8221; you resolve it to <code>id1000001666456998<\/code>, and you have 18 books of pricing history attached to the same row your settlement engine just closed.<\/p>\n<h3>Step 5 \u2014 Persist It for the Audit Trail<\/h3>\n<p>Compliance is not just about getting the join right today, it is about proving you got it right last March. Write the mapping table to a store with a captured timestamp, so every settled bet can be traced back to the exact ID resolution that produced it.<\/p>\n<pre class=\"wp-block-code\"><code>import csv\n\nwith open(\"fixture_map.csv\", \"w\", newline=\"\") as fh:\n    w = csv.DictWriter(fh, fieldnames=rows[0].keys())\n    w.writeheader()\n    w.writerows(rows)\n# Re-run on a schedule; keep dated snapshots as your reconciliation ledger.<\/code><\/pre>\n<p>Pair this with OddsPapi&#8217;s free historical odds endpoint and your audit trail covers both the mapping and the price history behind every graded market, at no extra cost.<\/p>\n<h2>Worked Example: Spain vs Saudi Arabia<\/h2>\n<p>Here is the full resolution for one live World Cup fixture, every value pulled from the API:<\/p>\n<figure class=\"wp-block-table\">\n<table>\n<thead>\n<tr>\n<th>System<\/th>\n<th>Identifier<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>OddsPapi fixtureId<\/td>\n<td><code>id1000001666456998<\/code><\/td>\n<\/tr>\n<tr>\n<td>Betradar<\/td>\n<td><code>66456998<\/code><\/td>\n<\/tr>\n<tr>\n<td>Genius Sports<\/td>\n<td><code>15457158<\/code><\/td>\n<\/tr>\n<tr>\n<td>Pinnacle<\/td>\n<td><code>1620858188<\/code><\/td>\n<\/tr>\n<tr>\n<td>OpticOdds<\/td>\n<td><code>20260621440DD3DB<\/code><\/td>\n<\/tr>\n<tr>\n<td>Sofascore<\/td>\n<td><code>15186840<\/code><\/td>\n<\/tr>\n<tr>\n<td>Flashscore<\/td>\n<td><code>CASh7QGF<\/code><\/td>\n<\/tr>\n<tr>\n<td>LSports<\/td>\n<td><code>18487380<\/code><\/td>\n<\/tr>\n<tr>\n<td>Books priced<\/td>\n<td>18 (Pinnacle, Bet365, FanDuel, DraftKings, Caesars, Kalshi, Polymarket, \u2026)<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/figure>\n<p>One <code>\/fixtures<\/code> call gave us the seven-way ID map. One <code>\/odds<\/code> call on the resolved fixtureId gave us 18 books, including Pinnacle&#8217;s sharp line and two prediction markets. No name normalisation, no timestamp matching.<\/p>\n<h2>Honest Caveats<\/h2>\n<ul>\n<li><strong>Pricing and mapping are separate responses.<\/strong> <code>\/odds<\/code> returns pricing keyed by fixtureId but no <code>externalProviders<\/code>. Always resolve the map from <code>\/fixtures<\/code> first.<\/li>\n<li><strong>Long-tail IDs are sparse.<\/strong> Betradar is universal on soccer; Genius, LSports, Sofascore and Mollybet are partial. Build on the provider you actually settle against, and null-guard the rest.<\/li>\n<li><strong>Virtual and simulated fixtures exist.<\/strong> In our 685-fixture window, 34 were simulated-reality-league (&#8220;SRL&#8221;) events. They still carry a <code>betradarId<\/code>, but they settle on a different clock, so filter them out of regulated-market reconciliation by tournament.<\/li>\n<li><strong>Fill rates vary by sport and season.<\/strong> The numbers above are a June soccer snapshot. Re-measure for your sport mix; esports leans on <code>oddinId<\/code>, US majors on <code>opticoddsId<\/code>.<\/li>\n<\/ul>\n<h2>Why This Beats a Single Licensed Feed<\/h2>\n<p>A licensed stats provider gives you one authoritative result feed and the books it chooses to expose. OddsPapi sits next to it as the pricing layer: 350+ bookmakers, sharps (Pinnacle, SBOBet), exchanges, prediction markets and crypto books, with native market structures (Asian handicaps, player props) carried as first-class IDs rather than flattened strings. The <code>externalProviders<\/code> map is what lets the two coexist, your regulator-approved feed stays the source of truth for settlement, and OddsPapi feeds the price discovery, CLV audit and risk signals around it, joined on a deterministic key.<\/p>\n<h2>Get Your Free API Key<\/h2>\n<p>The <code>\/fixtures<\/code> endpoint, the <code>externalProviders<\/code> map, and free historical odds for your audit trail are all on the free tier. <strong><a href=\"https:\/\/oddspapi.io\">Grab a free OddsPapi API key<\/a><\/strong> and wire the join into your reconciliation pipeline today.<\/p>\n<h2>Frequently Asked Questions<\/h2>\n<div class=\"faq\">\n<h3>How do I map an OddsPapi fixture to a Betradar event ID?<\/h3>\n<p>Call <code>GET \/v4\/fixtures<\/code> and read the <code>externalProviders.betradarId<\/code> field on each fixture. It is populated on 100% of soccer fixtures we sampled, so it works as a universal join key between OddsPapi pricing and a Betradar settlement feed.<\/p>\n<h3>Does the OddsPapi odds endpoint include external provider IDs?<\/h3>\n<p>No. <code>\/v4\/odds<\/code> returns pricing keyed by the OddsPapi <code>fixtureId<\/code> but does not carry the <code>externalProviders<\/code> block. Resolve the ID map from <code>\/v4\/fixtures<\/code> first, then fetch pricing by fixtureId.<\/p>\n<h3>Which external provider IDs does OddsPapi expose?<\/h3>\n<p>Ten: Betradar, Genius Sports (BetGenius), Pinnacle, OpticOdds, Sofascore, Flashscore, LSports, Mollybet, TXOdds and Oddin. Betradar has the highest fill rate; the others are partial and should be null-guarded.<\/p>\n<h3>Why not just match on team name and kickoff time?<\/h3>\n<p>Name plus timestamp matching breaks on naming variants, rescheduled kickoffs and same-name fixtures on the same day, and it fails silently. An ID join is deterministic and auditable: it either resolves or returns null, which you can alert on.<\/p>\n<h3>Is the externalProviders mapping free?<\/h3>\n<p>Yes. It ships on every <code>\/v4\/fixtures<\/code> response on the free tier, alongside free historical odds you can use as a reconciliation ledger.<\/p>\n<\/div>\n<p><script type=\"application\/ld+json\">\n{\n  \"@context\": \"https:\/\/schema.org\",\n  \"@type\": \"FAQPage\",\n  \"mainEntity\": [\n    {\"@type\":\"Question\",\"name\":\"How do I map an OddsPapi fixture to a Betradar event ID?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Call GET \/v4\/fixtures and read the externalProviders.betradarId field on each fixture. It is populated on 100% of soccer fixtures sampled, so it works as a universal join key between OddsPapi pricing and a Betradar settlement feed.\"}},\n    {\"@type\":\"Question\",\"name\":\"Does the OddsPapi odds endpoint include external provider IDs?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"No. \/v4\/odds returns pricing keyed by the OddsPapi fixtureId but does not carry the externalProviders block. Resolve the ID map from \/v4\/fixtures first, then fetch pricing by fixtureId.\"}},\n    {\"@type\":\"Question\",\"name\":\"Which external provider IDs does OddsPapi expose?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Ten: Betradar, Genius Sports (BetGenius), Pinnacle, OpticOdds, Sofascore, Flashscore, LSports, Mollybet, TXOdds and Oddin. Betradar has the highest fill rate; the others are partial and should be null-guarded.\"}},\n    {\"@type\":\"Question\",\"name\":\"Why not just match on team name and kickoff time?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Name plus timestamp matching breaks on naming variants, rescheduled kickoffs and same-name fixtures on the same day, and it fails silently. An ID join is deterministic and auditable: it either resolves or returns null, which you can alert on.\"}},\n    {\"@type\":\"Question\",\"name\":\"Is the externalProviders mapping free?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Yes. It ships on every \/v4\/fixtures response on the free tier, alongside free historical odds you can use as a reconciliation ledger.\"}}\n  ]\n}\n<\/script><\/p>\n<p><!--\nFocus Keyphrase: fixture mapping\nSEO Title: Fixture Mapping for Compliance: Join OddsPapi, Betradar & Genius IDs\nMeta Description: Reconcile OddsPapi pricing with your Betradar or Genius settlement feed. Every fixture ships 10 provider IDs to join odds to stats in Python. Free tier.\nSlug: fixture-mapping-compliance-betradar\n--><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Reconcile OddsPapi pricing with your Betradar or Genius settlement feed. Every fixture ships 10 provider IDs to join odds to stats in Python. Free tier.<\/p>\n","protected":false},"author":2,"featured_media":3106,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[7],"tags":[8,9,11,10,74],"class_list":["post-3105","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-how-to-guides","tag-free-api","tag-odds-api","tag-python","tag-sports-betting-api","tag-sportsbook-operators"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Fixture Mapping for Compliance: Join OddsPapi, Betradar &amp; Genius IDs (Python) | OddsPapi Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Fixture Mapping for Compliance: Join OddsPapi, Betradar &amp; Genius IDs (Python) | OddsPapi Blog\" \/>\n<meta property=\"og:description\" content=\"Reconcile OddsPapi pricing with your Betradar or Genius settlement feed. Every fixture ships 10 provider IDs to join odds to stats in Python. Free tier.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/\" \/>\n<meta property=\"og:site_name\" content=\"OddsPapi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-07-13T10:00:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/oddspapi.io\/blog\/wp-content\/uploads\/2026\/06\/fixture-mapping-compliance-betradar-scaled.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1429\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Odds API Writer\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/oddspapi.io\/logo-v2.webp\" \/>\n<meta name=\"twitter:creator\" content=\"@oddspapiapi\" \/>\n<meta name=\"twitter:site\" content=\"@oddspapiapi\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Odds API Writer\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/\"},\"author\":{\"name\":\"Odds API Writer\",\"@id\":\"https:\/\/oddspapi.io\/blog\/#\/schema\/person\/b6f21e649c4f556f0a95c23a0f1efa13\"},\"headline\":\"Fixture Mapping for Compliance: Join OddsPapi, Betradar &#038; Genius IDs (Python)\",\"datePublished\":\"2026-07-13T10:00:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/\"},\"wordCount\":1336,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/oddspapi.io\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/oddspapi.io\/blog\/wp-content\/uploads\/2026\/06\/fixture-mapping-compliance-betradar-scaled.webp\",\"keywords\":[\"Free API\",\"Odds API\",\"Python\",\"Sports Betting API\",\"Sportsbook Operators\"],\"articleSection\":[\"How To Guides\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/\",\"url\":\"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/\",\"name\":\"Fixture Mapping for Compliance: Join OddsPapi, Betradar & Genius IDs (Python) | OddsPapi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/oddspapi.io\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/oddspapi.io\/blog\/wp-content\/uploads\/2026\/06\/fixture-mapping-compliance-betradar-scaled.webp\",\"datePublished\":\"2026-07-13T10:00:00+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/#primaryimage\",\"url\":\"https:\/\/oddspapi.io\/blog\/wp-content\/uploads\/2026\/06\/fixture-mapping-compliance-betradar-scaled.webp\",\"contentUrl\":\"https:\/\/oddspapi.io\/blog\/wp-content\/uploads\/2026\/06\/fixture-mapping-compliance-betradar-scaled.webp\",\"width\":2560,\"height\":1429,\"caption\":\"Fixture Mapping for Compliance - OddsPapi API Blog\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/oddspapi.io\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Fixture Mapping for Compliance: Join OddsPapi, Betradar &#038; Genius IDs (Python)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/oddspapi.io\/blog\/#website\",\"url\":\"https:\/\/oddspapi.io\/blog\/\",\"name\":\"OddsPapi\",\"description\":\"Sports Odds API Tutorials &amp; Guides\",\"publisher\":{\"@id\":\"https:\/\/oddspapi.io\/blog\/#organization\"},\"alternateName\":\"Odds Papi\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/oddspapi.io\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/oddspapi.io\/blog\/#organization\",\"name\":\"OddsPapi\",\"url\":\"https:\/\/oddspapi.io\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/oddspapi.io\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/oddspapi.io\/blog\/wp-content\/uploads\/2025\/11\/oddspapi.png\",\"contentUrl\":\"https:\/\/oddspapi.io\/blog\/wp-content\/uploads\/2025\/11\/oddspapi.png\",\"width\":135,\"height\":135,\"caption\":\"OddsPapi\"},\"image\":{\"@id\":\"https:\/\/oddspapi.io\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/oddspapiapi\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/oddspapi.io\/blog\/#\/schema\/person\/b6f21e649c4f556f0a95c23a0f1efa13\",\"name\":\"Odds API Writer\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/oddspapi.io\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/33b204f24af3d02e35b25ae730c0536121ca6a783fdb196e7611c9e49fcd13eb?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/33b204f24af3d02e35b25ae730c0536121ca6a783fdb196e7611c9e49fcd13eb?s=96&d=mm&r=g\",\"caption\":\"Odds API Writer\"},\"url\":\"https:\/\/oddspapi.io\/blog\/author\/andy-lavelle\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Fixture Mapping for Compliance: Join OddsPapi, Betradar & Genius IDs (Python) | OddsPapi Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/","og_locale":"en_US","og_type":"article","og_title":"Fixture Mapping for Compliance: Join OddsPapi, Betradar & Genius IDs (Python) | OddsPapi Blog","og_description":"Reconcile OddsPapi pricing with your Betradar or Genius settlement feed. Every fixture ships 10 provider IDs to join odds to stats in Python. Free tier.","og_url":"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/","og_site_name":"OddsPapi Blog","article_published_time":"2026-07-13T10:00:00+00:00","og_image":[{"width":2560,"height":1429,"url":"https:\/\/oddspapi.io\/blog\/wp-content\/uploads\/2026\/06\/fixture-mapping-compliance-betradar-scaled.webp","type":"image\/webp"}],"author":"Odds API Writer","twitter_card":"summary_large_image","twitter_image":"https:\/\/oddspapi.io\/logo-v2.webp","twitter_creator":"@oddspapiapi","twitter_site":"@oddspapiapi","twitter_misc":{"Written by":"Odds API Writer","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/#article","isPartOf":{"@id":"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/"},"author":{"name":"Odds API Writer","@id":"https:\/\/oddspapi.io\/blog\/#\/schema\/person\/b6f21e649c4f556f0a95c23a0f1efa13"},"headline":"Fixture Mapping for Compliance: Join OddsPapi, Betradar &#038; Genius IDs (Python)","datePublished":"2026-07-13T10:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/"},"wordCount":1336,"commentCount":0,"publisher":{"@id":"https:\/\/oddspapi.io\/blog\/#organization"},"image":{"@id":"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/#primaryimage"},"thumbnailUrl":"https:\/\/oddspapi.io\/blog\/wp-content\/uploads\/2026\/06\/fixture-mapping-compliance-betradar-scaled.webp","keywords":["Free API","Odds API","Python","Sports Betting API","Sportsbook Operators"],"articleSection":["How To Guides"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/","url":"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/","name":"Fixture Mapping for Compliance: Join OddsPapi, Betradar & Genius IDs (Python) | OddsPapi Blog","isPartOf":{"@id":"https:\/\/oddspapi.io\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/#primaryimage"},"image":{"@id":"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/#primaryimage"},"thumbnailUrl":"https:\/\/oddspapi.io\/blog\/wp-content\/uploads\/2026\/06\/fixture-mapping-compliance-betradar-scaled.webp","datePublished":"2026-07-13T10:00:00+00:00","breadcrumb":{"@id":"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/#primaryimage","url":"https:\/\/oddspapi.io\/blog\/wp-content\/uploads\/2026\/06\/fixture-mapping-compliance-betradar-scaled.webp","contentUrl":"https:\/\/oddspapi.io\/blog\/wp-content\/uploads\/2026\/06\/fixture-mapping-compliance-betradar-scaled.webp","width":2560,"height":1429,"caption":"Fixture Mapping for Compliance - OddsPapi API Blog"},{"@type":"BreadcrumbList","@id":"https:\/\/oddspapi.io\/blog\/fixture-mapping-compliance-betradar\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/oddspapi.io\/blog\/"},{"@type":"ListItem","position":2,"name":"Fixture Mapping for Compliance: Join OddsPapi, Betradar &#038; Genius IDs (Python)"}]},{"@type":"WebSite","@id":"https:\/\/oddspapi.io\/blog\/#website","url":"https:\/\/oddspapi.io\/blog\/","name":"OddsPapi","description":"Sports Odds API Tutorials &amp; Guides","publisher":{"@id":"https:\/\/oddspapi.io\/blog\/#organization"},"alternateName":"Odds Papi","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/oddspapi.io\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/oddspapi.io\/blog\/#organization","name":"OddsPapi","url":"https:\/\/oddspapi.io\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/oddspapi.io\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/oddspapi.io\/blog\/wp-content\/uploads\/2025\/11\/oddspapi.png","contentUrl":"https:\/\/oddspapi.io\/blog\/wp-content\/uploads\/2025\/11\/oddspapi.png","width":135,"height":135,"caption":"OddsPapi"},"image":{"@id":"https:\/\/oddspapi.io\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/oddspapiapi"]},{"@type":"Person","@id":"https:\/\/oddspapi.io\/blog\/#\/schema\/person\/b6f21e649c4f556f0a95c23a0f1efa13","name":"Odds API Writer","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/oddspapi.io\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/33b204f24af3d02e35b25ae730c0536121ca6a783fdb196e7611c9e49fcd13eb?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/33b204f24af3d02e35b25ae730c0536121ca6a783fdb196e7611c9e49fcd13eb?s=96&d=mm&r=g","caption":"Odds API Writer"},"url":"https:\/\/oddspapi.io\/blog\/author\/andy-lavelle\/"}]}},"_links":{"self":[{"href":"https:\/\/oddspapi.io\/blog\/wp-json\/wp\/v2\/posts\/3105","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/oddspapi.io\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/oddspapi.io\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/oddspapi.io\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/oddspapi.io\/blog\/wp-json\/wp\/v2\/comments?post=3105"}],"version-history":[{"count":1,"href":"https:\/\/oddspapi.io\/blog\/wp-json\/wp\/v2\/posts\/3105\/revisions"}],"predecessor-version":[{"id":3107,"href":"https:\/\/oddspapi.io\/blog\/wp-json\/wp\/v2\/posts\/3105\/revisions\/3107"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/oddspapi.io\/blog\/wp-json\/wp\/v2\/media\/3106"}],"wp:attachment":[{"href":"https:\/\/oddspapi.io\/blog\/wp-json\/wp\/v2\/media?parent=3105"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/oddspapi.io\/blog\/wp-json\/wp\/v2\/categories?post=3105"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/oddspapi.io\/blog\/wp-json\/wp\/v2\/tags?post=3105"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}