{"id":3134,"date":"2026-06-24T14:12:39","date_gmt":"2026-06-24T14:12:39","guid":{"rendered":"https:\/\/oddspapi.io\/blog\/?p=3134"},"modified":"2026-06-24T14:15:42","modified_gmt":"2026-06-24T14:15:42","slug":"sports-analytics-jobs-portfolio","status":"publish","type":"post","link":"https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/","title":{"rendered":"Sports Analytics Jobs: Break Into Sports Trading &#038; Build a Portfolio That Gets Hired"},"content":{"rendered":"<p>Want a job in sports analytics, trading, or quant betting? The roles exist, and there are more of them every year, but they are scattered across team career pages, league sites, LinkedIn, and a dozen niche boards. Worse, the listings are only half the battle. Desks get hundreds of applicants who can recite the theory. Almost none of them show up with a working project that pulls live market data and finds an edge.<\/p>\n<p>This guide covers both halves: where to actually find the jobs, and how to build a portfolio project with a free odds API that puts you ahead of the stack of resumes.<\/p>\n<h2>Step 1: Find the jobs in one place<\/h2>\n<p>Sports analytics and trading roles are notoriously hard to track down. The best single resource we have found is <a href=\"https:\/\/sportsjobs.online\" target=\"_blank\" rel=\"noopener\">SportsJobs Online<\/a>.<\/p>\n<figure class=\"wp-block-table\">\n<table>\n<thead>\n<tr>\n<th>SportsJobs Online<\/th>\n<th>Details<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>What it is<\/td>\n<td>A job board built specifically for sports analytics careers<\/td>\n<\/tr>\n<tr>\n<td>How it works<\/td>\n<td>Updated daily by automatically tracking career pages from major teams, leagues, and sports organizations, plus LinkedIn and other boards<\/td>\n<\/tr>\n<tr>\n<td>Hidden roles<\/td>\n<td>Also surfaces opportunities shared through its network that are hard to find through public channels<\/td>\n<\/tr>\n<tr>\n<td>New jobs<\/td>\n<td>Around 400 per month (12,000+ added historically)<\/td>\n<\/tr>\n<tr>\n<td>Sports<\/td>\n<td>Baseball, basketball, football, soccer, hockey, golf, tennis, Formula 1<\/td>\n<\/tr>\n<tr>\n<td>Roles<\/td>\n<td>Internships through to director level<\/td>\n<\/tr>\n<tr>\n<td>Extras<\/td>\n<td>Powerful search filters, plus member access to datasets, educational-partner discounts, and recommendations for breaking into the industry<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/figure>\n<p>Instead of checking dozens of sites and still missing openings, SportsJobs Online brings them together and lets you filter fast, which is why it is our top pick for a focused sports analytics search.<\/p>\n<p>It still pays to cast a wide net. A few other places worth checking:<\/p>\n<ul>\n<li><a href=\"https:\/\/www.teamworkonline.com\" target=\"_blank\" rel=\"noopener\">TeamWork Online<\/a>: the long-running sports-industry board used by teams, leagues, and venues.<\/li>\n<li><a href=\"https:\/\/www.linkedin.com\/jobs\/\" target=\"_blank\" rel=\"noopener\">LinkedIn Jobs<\/a>: set alerts for &#8220;sports analyst&#8221;, &#8220;trading analyst&#8221;, and &#8220;quantitative analyst&#8221;.<\/li>\n<li><a href=\"https:\/\/www.indeed.com\" target=\"_blank\" rel=\"noopener\">Indeed<\/a>: broad coverage that catches listings which never reach the niche boards.<\/li>\n<\/ul>\n<h2>Step 2: Understand what desks actually hire for<\/h2>\n<p>Finding the listing is the easy part. Standing out is harder. Sports trading and quant betting roles are technical, and the screen is usually some version of &#8220;can you turn market data into a decision?&#8221; Here is what that breaks down to in practice.<\/p>\n<figure class=\"wp-block-table\">\n<table>\n<thead>\n<tr>\n<th>Skill<\/th>\n<th>Why it matters<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Python<\/td>\n<td>The lingua franca of every trading desk and modelling team. <code>requests<\/code>, <code>pandas<\/code>, <code>numpy<\/code>.<\/td>\n<\/tr>\n<tr>\n<td>Reading odds feeds<\/td>\n<td>Decimal vs American vs fractional, implied probability, removing the vig to get a fair price.<\/td>\n<\/tr>\n<tr>\n<td>Line shopping &amp; CLV<\/td>\n<td>Comparing prices across books and benchmarking against the closing line is the core of value betting.<\/td>\n<\/tr>\n<tr>\n<td>Sharp vs soft books<\/td>\n<td>Knowing why Pinnacle&#8217;s price is a signal and a recreational book&#8217;s is noise.<\/td>\n<\/tr>\n<tr>\n<td>Modelling<\/td>\n<td>Poisson for soccer, Elo for tennis, Monte Carlo for bankroll risk. You do not need all of them, but you need one done well.<\/td>\n<\/tr>\n<tr>\n<td>A portfolio<\/td>\n<td>The thing that 95% of applicants skip. A repo that does something real beats a list of buzzwords every time.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/figure>\n<h2>Step 3: Build a portfolio project with a free odds API<\/h2>\n<p>The fastest way to demonstrate every skill above is to build a small tool against live market data. You do not need a commercial data contract or a scraping setup. <a href=\"https:\/\/oddspapi.io\" target=\"_blank\" rel=\"noopener\">OddsPapi<\/a> gives you a free tier with real-time odds from 350+ bookmakers, including sharps like Pinnacle and SBOBET, plus free historical data so you can backtest a model before you ever risk a cent.<\/p>\n<p>Here is a complete, working example: a line-shopping scanner that pulls a soccer match across every book, finds the best price, and flags when it beats the sharp benchmark. This is exactly the kind of thing a trading desk wants to see you reason about.<\/p>\n<pre class=\"wp-block-code\"><code>import requests, time\nfrom datetime import date, timedelta\n\nAPI_KEY = \"YOUR_API_KEY\"          # get a free key at oddspapi.io\nBASE = \"https:\/\/api.oddspapi.io\/v4\"\n\ndef get(path, **params):\n    params[\"apiKey\"] = API_KEY     # apiKey is a query param, not a header\n    return requests.get(f\"{BASE}{path}\", params=params).json()\n\n# 1. Find a soccer fixture that has live odds\nfrm = date.today().isoformat()\nto = (date.today() + timedelta(days=3)).isoformat()\nfixtures = [f for f in get(\"\/fixtures\", sportId=10, **{\"from\": frm, \"to\": to})\n            if f.get(\"hasOdds\")]\nfixture_id = fixtures[0][\"fixtureId\"]\n\n# 2. Pull every book's price for Full Time Result (market 101, Home = outcome 101)\ntime.sleep(1)\nodds = get(\"\/odds\", fixtureId=fixture_id)[\"bookmakerOdds\"]\n\nhome_prices = {}\nfor slug, data in odds.items():\n    try:\n        home_prices[slug] = data[\"markets\"][\"101\"][\"outcomes\"][\"101\"][\"players\"][\"0\"][\"price\"]\n    except KeyError:\n        continue   # this book doesn't price that market\n\n# 3. Line shopping: who has the best (highest) price?\nranked = sorted(home_prices.items(), key=lambda kv: -kv[1])\nbest_book, best_price = ranked[0]\nprint(f\"Best home-win price: {best_price} @ {best_book}\")\n\n# 4. A simple edge signal: Pinnacle is the sharp benchmark.\n#    Beat its price and you may have value.\nif \"pinnacle\" in home_prices and best_book != \"pinnacle\":\n    edge = (best_price \/ home_prices[\"pinnacle\"] - 1) * 100\n    print(f\"Best price is {edge:.1f}% above Pinnacle's {home_prices['pinnacle']}\")\n<\/code><\/pre>\n<p>That is fewer than 30 lines, and it touches authentication, fixture discovery, nested JSON parsing, line shopping, and a sharp-book edge signal. Drop it in a repo with a clean README and you already have more to talk about in an interview than most candidates.<\/p>\n<h2>Step 4: Level it up<\/h2>\n<p>Once the basic scanner works, extend it into something a hiring manager remembers. Each of these is a tutorial on our blog with tested Python you can fork:<\/p>\n<ul>\n<li><a href=\"https:\/\/oddspapi.io\/blog\/arbitrage-betting-bot-python\/\" target=\"_blank\" rel=\"noopener\">Build an arbitrage betting bot<\/a>: find risk-free spreads across books.<\/li>\n<li><a href=\"https:\/\/oddspapi.io\/blog\/value-betting-scanner-python\/\" target=\"_blank\" rel=\"noopener\">Build a value betting scanner<\/a>: surface +EV prices against a fair line.<\/li>\n<li><a href=\"https:\/\/oddspapi.io\/blog\/expected-value-betting-python-ev-clv\/\" target=\"_blank\" rel=\"noopener\">Expected value, CLV &amp; the Pinnacle benchmark<\/a>: the metric desks live by.<\/li>\n<li><a href=\"https:\/\/oddspapi.io\/blog\/kelly-criterion-staking-calculator-python\/\" target=\"_blank\" rel=\"noopener\">Kelly criterion stake sizing<\/a>: turn an edge into a bankroll strategy.<\/li>\n<li><a href=\"https:\/\/oddspapi.io\/blog\/tennis-elo-model-python\/\" target=\"_blank\" rel=\"noopener\">Tennis Elo model<\/a>: beat the closing line with free historical odds.<\/li>\n<\/ul>\n<p>Pick one, ship it, write up what you learned. A candidate who walks in with a backtested model and a line-shopping tool built on real data from 350+ books is not competing with the resume pile; they are in a different conversation entirely.<\/p>\n<h2>Put it together<\/h2>\n<p>Two steps: find the roles, then earn them.<\/p>\n<ol>\n<li>Track openings daily at <a href=\"https:\/\/sportsjobs.online\" target=\"_blank\" rel=\"noopener\">SportsJobs Online<\/a>: internships to director level, across every major sport.<\/li>\n<li>Build the portfolio that gets you shortlisted. <a href=\"https:\/\/oddspapi.io\" target=\"_blank\" rel=\"noopener\">Grab a free OddsPapi API key<\/a> and start with the scanner above.<\/li>\n<\/ol>\n<p>The data is free. The jobs are listed. The only thing missing is the project with your name on it.<\/p>\n<p><!--\nFocus Keyphrase: sports analytics jobs\nSEO Title: Sports Analytics Jobs: Break Into Sports Trading + Build a Portfolio\nMeta Description: Find sports analytics jobs and stand out. Build a portfolio with a free odds API (350+ bookmakers) that gets you shortlisted for trading & quant roles.\nSlug: sports-analytics-jobs-portfolio\n--><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Find sports analytics jobs and stand out. Build a portfolio with a free odds API (350+ bookmakers) that gets you shortlisted for trading &#038; quant roles.<\/p>\n","protected":false},"author":2,"featured_media":3135,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[7],"tags":[9,11,79,10],"class_list":["post-3134","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-how-to-guides","tag-odds-api","tag-python","tag-sports-analytics","tag-sports-betting-api"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Sports Analytics Jobs: Break Into Sports Trading &amp; Build a Portfolio That Gets Hired | 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\/sports-analytics-jobs-portfolio\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Sports Analytics Jobs: Break Into Sports Trading &amp; Build a Portfolio That Gets Hired | OddsPapi Blog\" \/>\n<meta property=\"og:description\" content=\"Find sports analytics jobs and stand out. Build a portfolio with a free odds API (350+ bookmakers) that gets you shortlisted for trading &amp; quant roles.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/\" \/>\n<meta property=\"og:site_name\" content=\"OddsPapi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-24T14:12:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-24T14:15:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/oddspapi.io\/blog\/wp-content\/uploads\/2026\/06\/sports-analytics-jobs-portfolio-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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/\"},\"author\":{\"name\":\"Odds API Writer\",\"@id\":\"https:\/\/oddspapi.io\/blog\/#\/schema\/person\/b6f21e649c4f556f0a95c23a0f1efa13\"},\"headline\":\"Sports Analytics Jobs: Break Into Sports Trading &#038; Build a Portfolio That Gets Hired\",\"datePublished\":\"2026-06-24T14:12:39+00:00\",\"dateModified\":\"2026-06-24T14:15:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/\"},\"wordCount\":850,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/oddspapi.io\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/oddspapi.io\/blog\/wp-content\/uploads\/2026\/06\/sports-analytics-jobs-portfolio-scaled.webp\",\"keywords\":[\"Odds API\",\"Python\",\"Sports Analytics\",\"Sports Betting API\"],\"articleSection\":[\"How To Guides\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/\",\"url\":\"https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/\",\"name\":\"Sports Analytics Jobs: Break Into Sports Trading & Build a Portfolio That Gets Hired | OddsPapi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/oddspapi.io\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/oddspapi.io\/blog\/wp-content\/uploads\/2026\/06\/sports-analytics-jobs-portfolio-scaled.webp\",\"datePublished\":\"2026-06-24T14:12:39+00:00\",\"dateModified\":\"2026-06-24T14:15:42+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/#primaryimage\",\"url\":\"https:\/\/oddspapi.io\/blog\/wp-content\/uploads\/2026\/06\/sports-analytics-jobs-portfolio-scaled.webp\",\"contentUrl\":\"https:\/\/oddspapi.io\/blog\/wp-content\/uploads\/2026\/06\/sports-analytics-jobs-portfolio-scaled.webp\",\"width\":2560,\"height\":1429,\"caption\":\"Sports Analytics Jobs - OddsPapi API Blog\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/oddspapi.io\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Sports Analytics Jobs: Break Into Sports Trading &#038; Build a Portfolio That Gets Hired\"}]},{\"@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":"Sports Analytics Jobs: Break Into Sports Trading & Build a Portfolio That Gets Hired | 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\/sports-analytics-jobs-portfolio\/","og_locale":"en_US","og_type":"article","og_title":"Sports Analytics Jobs: Break Into Sports Trading & Build a Portfolio That Gets Hired | OddsPapi Blog","og_description":"Find sports analytics jobs and stand out. Build a portfolio with a free odds API (350+ bookmakers) that gets you shortlisted for trading & quant roles.","og_url":"https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/","og_site_name":"OddsPapi Blog","article_published_time":"2026-06-24T14:12:39+00:00","article_modified_time":"2026-06-24T14:15:42+00:00","og_image":[{"width":2560,"height":1429,"url":"https:\/\/oddspapi.io\/blog\/wp-content\/uploads\/2026\/06\/sports-analytics-jobs-portfolio-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":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/#article","isPartOf":{"@id":"https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/"},"author":{"name":"Odds API Writer","@id":"https:\/\/oddspapi.io\/blog\/#\/schema\/person\/b6f21e649c4f556f0a95c23a0f1efa13"},"headline":"Sports Analytics Jobs: Break Into Sports Trading &#038; Build a Portfolio That Gets Hired","datePublished":"2026-06-24T14:12:39+00:00","dateModified":"2026-06-24T14:15:42+00:00","mainEntityOfPage":{"@id":"https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/"},"wordCount":850,"commentCount":0,"publisher":{"@id":"https:\/\/oddspapi.io\/blog\/#organization"},"image":{"@id":"https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/#primaryimage"},"thumbnailUrl":"https:\/\/oddspapi.io\/blog\/wp-content\/uploads\/2026\/06\/sports-analytics-jobs-portfolio-scaled.webp","keywords":["Odds API","Python","Sports Analytics","Sports Betting API"],"articleSection":["How To Guides"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/","url":"https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/","name":"Sports Analytics Jobs: Break Into Sports Trading & Build a Portfolio That Gets Hired | OddsPapi Blog","isPartOf":{"@id":"https:\/\/oddspapi.io\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/#primaryimage"},"image":{"@id":"https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/#primaryimage"},"thumbnailUrl":"https:\/\/oddspapi.io\/blog\/wp-content\/uploads\/2026\/06\/sports-analytics-jobs-portfolio-scaled.webp","datePublished":"2026-06-24T14:12:39+00:00","dateModified":"2026-06-24T14:15:42+00:00","breadcrumb":{"@id":"https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/#primaryimage","url":"https:\/\/oddspapi.io\/blog\/wp-content\/uploads\/2026\/06\/sports-analytics-jobs-portfolio-scaled.webp","contentUrl":"https:\/\/oddspapi.io\/blog\/wp-content\/uploads\/2026\/06\/sports-analytics-jobs-portfolio-scaled.webp","width":2560,"height":1429,"caption":"Sports Analytics Jobs - OddsPapi API Blog"},{"@type":"BreadcrumbList","@id":"https:\/\/oddspapi.io\/blog\/sports-analytics-jobs-portfolio\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/oddspapi.io\/blog\/"},{"@type":"ListItem","position":2,"name":"Sports Analytics Jobs: Break Into Sports Trading &#038; Build a Portfolio That Gets Hired"}]},{"@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\/3134","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=3134"}],"version-history":[{"count":2,"href":"https:\/\/oddspapi.io\/blog\/wp-json\/wp\/v2\/posts\/3134\/revisions"}],"predecessor-version":[{"id":3137,"href":"https:\/\/oddspapi.io\/blog\/wp-json\/wp\/v2\/posts\/3134\/revisions\/3137"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/oddspapi.io\/blog\/wp-json\/wp\/v2\/media\/3135"}],"wp:attachment":[{"href":"https:\/\/oddspapi.io\/blog\/wp-json\/wp\/v2\/media?parent=3134"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/oddspapi.io\/blog\/wp-json\/wp\/v2\/categories?post=3134"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/oddspapi.io\/blog\/wp-json\/wp\/v2\/tags?post=3134"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}