Sunday, November 16, 2025
Submit Press Release
Got Action
No Result
View All Result
  • Home
  • Football
  • Basketball
  • NCAA
    • NCAA Football
    • NCAA Basketball
    • NCAA Baseball
    • NCAA Sport
  • Baseball
  • NFL
  • NBA
  • NHL
  • MLB
  • Formula 1
  • MMA
  • Boxing
  • Tennis
  • Golf
  • Sports Picks
  • Home
  • Football
  • Basketball
  • NCAA
    • NCAA Football
    • NCAA Basketball
    • NCAA Baseball
    • NCAA Sport
  • Baseball
  • NFL
  • NBA
  • NHL
  • MLB
  • Formula 1
  • MMA
  • Boxing
  • Tennis
  • Golf
  • Sports Picks
Got Action
No Result
View All Result

Submitting CFBD predictions with HTTP requests

September 13, 2025
in NCAA Sport
0 0
0
Home NCAA Sport
Share on FacebookShare on Twitter


A week ago on the College Football Data Discord, some folks were discussing the difficulties of updating their predictions for the CFBD Model Pick’em Contest:

I see this complaint a fair amount–it is difficult to track all of the games that are available to pick, not to mention significant changes to the outlook of different games (a team’s starting QB being scratched with injury, for instance). That’s why one of my top tips for doing well in the CFBD Model Pick’em is to automate everything! This does not just mean how you make your predictions, but how you submit your predictions as well.

Thanks to some new features implemented by Bill, I have since moved beyond the Selenium-based pipeline I implemented a few years ago, and now my entire CFBD Model Pick’em pipeline relies on a series of simple HTTP calls. In this post, I will demonstrate how to format and execute these calls using cURL. cURL is an open-source library for uploading and downloading data from websites.

It is extremely unlikely that you will write these pipelines exclusively in cURL–rather, you will likely use a cURL wrapper library in your language of choice. Fortunately, the fantastic free website curlconverter.com will allow you to copy and paste valid cURL commands and convert them to the language of your choice (R, Python, etc.)

Obtaining your token

To begin, we will need to obtain a token for submitting to the game. We will first need to sign up for the predictions game if we have not done so already, then log in with our account. Visit predictions.collegefootballdata.com and sign in with one of the available options.

A screenshot of predictions.collegefootballdata.com. The user is logged out, and the page is prompting them to log in with one of Twitter or Reddit.

Once logged in, go to predictions.collegefootballdata.com/api/auth/token. You will see a long string of characters–this is your prediction token. This is a unique identifier that the CFBD Model Pick’em API will use to check that it is genuinely you submitting your picks, and not someone else.

Two very important notes:

This token is different from your basic CFBD API key and these cannot be used interchangeably! So do not swap them around–you cannot use your car key to open your house and vice versa! Do not share this token with anyone! If you give this token to someone else, they can log into your account and access your predictions and information.

This token will work for one month. You can simply set a reminder for yourself once a month to update the prediction token when convenient.

Getting games to pick

Now that we have our token, we can begin to make HTTP requests to the site using cURL.

The most basic HTTP request is a GET request–when we make a GET request, we are asking the url we are querying to get us data and return it to us in some format. We first need to specify the web url we are trying to query, which is the picks endpoint of the CFBD Model Pick’em API. This API contains the list of games for which we can submit picks in a given week.

curl ‘https://predictionsapi.collegefootballdata.com/api/picks'{“error”:”Unauthorized”}

Bummer! We cannot see the games to pick unless we can prove we have a CFBD Model Pick’em account. No matter, we will just need to give it our token. To do this, we will need to pass in our token as a header, which is specified with an -H tag. Note the backslashes (\) in our request–they allow us to put parts of our command on different lines, which allow us to make our requests more readable.

Much like querying the CFBD API, we simply pass the header ‘authorization: Bearer {your token here–no brackets!} into our request as a header to our basic request.

curl ‘https://predictionsapi.collegefootballdata.com/api/picks’ \
-H ‘authorization: Bearer {your token here!}'[{“id”:401754531,”season”:2025,”seasonType”:”regular”,”week”:3,”homeId”:154,”homeTeam”:”Wake Forest”,”awayId”:152,”awayTeam”:”NC State”,”spread”:7.5,”pickId”:120172,”pick”:[REDACTED]},
…
{“id”:401752921,”season”:2025,”seasonType”:”regular”,”week”:14,”homeId”:130,”homeTeam”:”Michigan”,”awayId”:194,”awayTeam”:”Ohio State”,”spread”:5.5,”pickId”:104248,”pick”:[REDACTED]}]

With this request, we have raw JSON data representing all of the games we have to pick! The id for each game returned by your request is identical to the id for games returned by requests to the CFBD API, so you can easily determine which games you need to predict for the contest.

Submitting predictions

Suppose we have our prediction for the Michigan/Ohio State game for the end of the season–we predict Michigan will win by 3.5 points (Bill will not let me publish this blog post if I do not have Michigan winning). We want to submit our prediction to the site. How can we? We have three options:

We can manually submit our prediction on the website.We can use the CSV import button on the website to submit our prediction for the game and any other games we want to make predictions for.We can use cURL to make another HTTP request and submit our predictions algorithmically!

The third option is going to integrate most seamlessly into any prediction pipeline we build. To do this, we can craft another cURL, this time making a POST request.

A POST request is kind of like sending a letter–you put what you want to send in your envelope, address it, and then POST it in the mail.

Just like before, we will need to include authorization for our request. Then, as a second header, we will need to tell cURL what format the data we are sending it is in–in this case, we are sending it some JSON. Finally, we send it some formatted JSON to reflect the pick we are submitting:

curl ‘https://predictionsapi.collegefootballdata.com/api/picks’ \
-H ‘authorization: Bearer {your token here!}’ \
-H ‘content-type: application/json’ \
–data-raw ‘{“gameId”:401752921,”pick”:-3.5}’

We don’t get any output to our console with this request, but if we check the website, we can see that our submission went through to the predictions page!

Our final prediction

Wrapping it up

Keep in mind to use HTTP requests responsibly–you do not want to spam a website with HTTP requests, as this can cause an unintentional denial of service or “DoS” attack or cause your IP to be limited (or even banned!) if you are not careful. Make sure you put adequate time in between HTTP requests to allow the website enough time to process your requests.

This should arm you with the tools to quickly pull in, predict, and submit your forecasts to the CFBD Model Pick’em! If you have data structured with a prediction for each CFBD game ID, submitting your predictions becomes a cinch. And because of how many languages allow you to submit HTTP requests, it should take very little work to submit predictions automatically using whatever language you use to generate predictions! Enjoy and best of luck in the prediction contest!



Source link

Tags: CFBDHTTPPredictionsRequestsSubmitting
Previous Post

A Better Way to Hit a Soft High Chip Shot

Next Post

Fix Your Tempo with the One-Handed Drill

Related Posts

PHOTO GALLERY | WATCH VIDEO | Big-play capability leads Westinghouse past Meyersdale in PIAA playoff
NCAA Sport

PHOTO GALLERY | WATCH VIDEO | Big-play capability leads Westinghouse past Meyersdale in PIAA playoff

November 15, 2025
Marcus Freeman linked to NFL job in wake of Belichick news
NCAA Sport

Marcus Freeman linked to NFL job in wake of Belichick news

November 15, 2025
Bearcats WR gets injury update before Arizona showdown
NCAA Sport

Bearcats WR gets injury update before Arizona showdown

November 15, 2025
The Game Big 12 Fans Need
NCAA Sport

The Game Big 12 Fans Need

November 14, 2025
College football Week 12 projected scores: Model predicts every FBS vs. FBS game
NCAA Sport

College football Week 12 projected scores: Model predicts every FBS vs. FBS game

November 14, 2025
Ole Miss’ Lane Kiffin linked to ‘The Swamp’ as latest rumors swirl
NCAA Sport

Ole Miss’ Lane Kiffin linked to ‘The Swamp’ as latest rumors swirl

November 14, 2025
Next Post
Fix Your Tempo with the One-Handed Drill

Fix Your Tempo with the One-Handed Drill

Arsenal 3-0 Nottingham Forest: Zubimendi brace condemns Postecoglou to defeat

Arsenal 3-0 Nottingham Forest: Zubimendi brace condemns Postecoglou to defeat

  • Trending
  • Comments
  • Latest
Jaren Jackson Jr. Calls GAME as Grizzlies Pull Past Rockets

Jaren Jackson Jr. Calls GAME as Grizzlies Pull Past Rockets

January 31, 2025
Forrest scores 94th-minute equaliser as Celtic sign off with a draw

Forrest scores 94th-minute equaliser as Celtic sign off with a draw

May 17, 2025
NHL Rumors: Alex Ovechkin’s Future, and Matthew Tkachuk’s Injury

NHL Rumors: Alex Ovechkin’s Future, and Matthew Tkachuk’s Injury

August 22, 2025
After 5 Straight Finishes, Aaron Kennedy Hoping For UFC Call Next

After 5 Straight Finishes, Aaron Kennedy Hoping For UFC Call Next

August 20, 2025
Another listless, flat tire of a performance – Dodgers Digest

Another listless, flat tire of a performance – Dodgers Digest

August 21, 2025
List of latest promotions, relegations and playoff results in non league – 13th April 2025

List of latest promotions, relegations and playoff results in non league – 13th April 2025

April 13, 2025
Anthony Davis could return to Mavericks’ lineup during upcoming Eastern road trip: Report

Anthony Davis could return to Mavericks’ lineup during upcoming Eastern road trip: Report

108
Avious Griffin Highlights Boxing Insider Promotion’s Card By Stopping Jose Luis Sanchez In 9.

Avious Griffin Highlights Boxing Insider Promotion’s Card By Stopping Jose Luis Sanchez In 9.

40
PHOTO GALLERY | WATCH VIDEO | Big-play capability leads Westinghouse past Meyersdale in PIAA playoff

PHOTO GALLERY | WATCH VIDEO | Big-play capability leads Westinghouse past Meyersdale in PIAA playoff

0
RANKED: Top 10 F1 Circuits for General Admission in 2026

RANKED: Top 10 F1 Circuits for General Admission in 2026

0
UFC 322: Della Maddalena vs. Makhachev live results and fight analytics

UFC 322: Della Maddalena vs. Makhachev live results and fight analytics

0
Rivals Carlos Alcaraz, Jannik Sinner to meet in ATP Finals

Rivals Carlos Alcaraz, Jannik Sinner to meet in ATP Finals

0
PHOTO GALLERY | WATCH VIDEO | Big-play capability leads Westinghouse past Meyersdale in PIAA playoff

PHOTO GALLERY | WATCH VIDEO | Big-play capability leads Westinghouse past Meyersdale in PIAA playoff

November 15, 2025
Rivals Carlos Alcaraz, Jannik Sinner to meet in ATP Finals

Rivals Carlos Alcaraz, Jannik Sinner to meet in ATP Finals

November 15, 2025
Florida at Ole Miss: predictions, live blog, highlights

Florida at Ole Miss: predictions, live blog, highlights

November 15, 2025
Sources: Broncos RB Dobbins (foot) likely done for season

Sources: Broncos RB Dobbins (foot) likely done for season

November 15, 2025
UFC 322: Della Maddalena vs. Makhachev live results and fight analytics

UFC 322: Della Maddalena vs. Makhachev live results and fight analytics

November 15, 2025
Towns, Shamet key Knicks’ win after Anunoby exits with injury

Towns, Shamet key Knicks’ win after Anunoby exits with injury

November 15, 2025
Facebook Twitter Instagram LinkedIn TikTok Pinterest
Got Action

Stay updated with the latest sports news, highlights, and expert analysis at Got Action. From football to basketball, we cover all your favorite sports. Get your daily dose of action now!

CATEGORIES

  • Baseball
  • Basketball
  • Boxing
  • Football
  • Formula 1
  • Golf
  • MLB
  • MMA
  • NBA
  • NCAA Baseball
  • NCAA Basketball
  • NCAA Football
  • NCAA Sport
  • NFL
  • NHL
  • Tennis
  • Uncategorized

SITEMAP

  • About us
  • Advertise with us
  • Submit Press Release
  • Disclaimer
  • Privacy Policy
  • DMCA
  • Cookie Privacy Policy
  • Terms and Conditions
  • Contact us

Copyright © 2025 Got Action.
Got Action is not responsible for the content of external sites.

Welcome Back!

Login to your account below

Forgotten Password?

Retrieve your password

Please enter your username or email address to reset your password.

Log In
No Result
View All Result
  • Home
  • Football
  • Basketball
  • NCAA
    • NCAA Football
    • NCAA Basketball
    • NCAA Baseball
    • NCAA Sport
  • Baseball
  • NFL
  • NBA
  • NHL
  • MLB
  • Formula 1
  • MMA
  • Boxing
  • Tennis
  • Golf
  • Sports Picks
Submit Press Release

Copyright © 2025 Got Action.
Got Action is not responsible for the content of external sites.