NCAAFB API – Daily Transactions Endpoint
We’ve added a Daily Transactions endpoint to our NCAA Football API to assist in tracking players' transfers to new schools.
This new endpoint provides all transactions recorded by the league on a given day, regardless of each transaction's effective date.
⭐ Benefit
You can now track when a player has officially transferred to a new school by requesting this endpoint each day during the offseason. While transfer portal moves make up the majority of activity, the feed also reports other roster transactions such as commitments, releases, and suspensions.
Visit our integration guide for details on leveraging this new feed, along with the Transfer Portal endpoint.
☑️ Sample Request:
Daily Transactions
curl --request GET \
--url https://api.sportradar.com/ncaafb/trial/v7/en/league/2026/06/03/transactions.json \
--header 'accept: application/json' \
--header 'x-api-key: YOUR_API_KEY'🔢 Versions
🔁 Endpoints Affected
⚙️ Return Samples
<transactions start_time="2026-06-03T04:00:00Z" end_time="2026-06-04T03:59:59Z">
<player id="568870e0-b6f1-11ee-bccf-932d6c60c46e" name="Karson Gordon" first_name="Karson" last_name="Gordon" position="WR">
<transaction id="8c738760-65ba-11f1-91f4-f9fc8b414f48" desc="Karson Gordon (WR) has committed to Austin Peay Governors." effective_date="2026-06-03" last_modified="2026-06-11T17:28:01+00:00" transaction_type="Committed" transaction_code="COM" transaction_year="2026" status_before="NWT" status_after="ACT">
<to_team id="e2a2c23d-3d8d-4f9e-9bed-8a432071f1a7" name="Governors" market="Austin Peay" alias="PEAY"/>
</transaction>
<transaction id="f5386e20-65b8-11f1-992c-db7b6aea72f4" desc="Karson Gordon (WR) has elected to join the transfer portal." effective_date="2026-06-03" last_modified="2026-06-11T17:26:56+00:00" transaction_type="Transfer Portal Entry" transaction_code="TP" transaction_year="2026" status_before="ACT" status_after="NWT">
<from_team id="398eda2b-ba77-469f-94df-18fd1d9087d8" name="Bruins" market="UCLA" alias="UCLA"/>
</transaction>
</player>
</transactions>{
"league": {
"id": "26c1246a-2fc3-4b7e-8999-1685d3ab4676",
"name": "NCAA Football",
"alias": "NCAAFB"
},
"start_time": "2026-06-03T04:00:00Z",
"end_time": "2026-06-04T03:59:59Z",
"players": [
{
"id": "568870e0-b6f1-11ee-bccf-932d6c60c46e",
"name": "Karson Gordon",
"first_name": "Karson",
"last_name": "Gordon",
"position": "WR",
"transactions": [
{
"id": "8c738760-65ba-11f1-91f4-f9fc8b414f48",
"desc": "Karson Gordon (WR) has committed to Austin Peay Governors.",
"effective_date": "2026-06-03",
"last_modified": "2026-06-11T17:28:01+00:00",
"transaction_type": "Committed",
"transaction_code": "COM",
"transaction_year": 2026,
"status_before": "NWT",
"status_after": "ACT",
"to_team": {
"id": "e2a2c23d-3d8d-4f9e-9bed-8a432071f1a7",
"name": "Governors",
"market": "Austin Peay",
"alias": "PEAY"
}
},
{
"id": "f5386e20-65b8-11f1-992c-db7b6aea72f4",
"desc": "Karson Gordon (WR) has elected to join the transfer portal.",
"effective_date": "2026-06-03",
"last_modified": "2026-06-11T17:26:56+00:00",
"transaction_type": "Transfer Portal Entry",
"transaction_code": "TP",
"transaction_year": 2026,
"status_before": "ACT",
"status_after": "NWT",
"from_team": {
"id": "398eda2b-ba77-469f-94df-18fd1d9087d8",
"name": "Bruins",
"market": "UCLA",
"alias": "UCLA"
}
}
]
}
],
"_comment": "Generation started @ 2026-06-15 20:38:34 +0000 ended @ 2026-06-15 20:38:34 +0000"
}