GuidesRelease Log
Coverage MatrixDocumentationChange LogLog InContact Us
Release Log

NCAA Men's Basketball API – Daily Transfers Endpoint

We’ve added a Daily Transfers endpoint to our NCAA Men's Basketball 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 FAQ for a complete list of transaction codes and types.


📋 Recommended Actions

  • Request the Daily Transfers endpoint each day (using the year/month/day path) to capture new transactions as the league records them.
  • Use the transaction_code / transaction_type fields to filter for the transaction categories relevant to your application, such as transfers, commitments, or releases.
  • Reference the effective_date separately from the record date, since transactions appear on the day they are recorded regardless of when they take effect.
  • See the full list of transaction codes and types in our NCAA Men's Basketball FAQ (link above).

☑️ Sample Request:

Daily Transfers

curl --request GET \
     --url https://api.sportradar.com/ncaamb/trial/v8/en/league/2026/07/22/transfers.json \
     --header 'accept: application/json' \
     --header 'x-api-key: YOUR_API_KEY'

🔢 Products

SportProductVersion(s)
BasketballNCAA Men's Basketball APIv8

🔁 Endpoints Affected


⚙️ Return Samples

<transfers start_time="2026-07-21T04:00:00Z" end_time="2026-07-22T03:59:59Z">
    <player id="779289d0-9c1e-4d45-80b5-2b04cc7dfaae" full_name="Filip Brankovic" first_name="Filip" last_name="Brankovic" position="F" primary_position="NA">
        <transfer id="0da4cf55-7eb3-44e3-95cd-94b5abddfd17" desc="F Filip Brankovic committed to High Point Panthers." effective_date="2026-07-18" last_modified="2026-07-21T21:29:32+00:00" transaction_type="Committed" transaction_code="COM">
            <to_team id="a311188e-1259-4fda-b0ea-c47cb52694b1" name="Panthers" market="High Point"/>
        </transfer>
    </player>
    <player id="ac828779-19b3-42f9-b246-9241906d1e04" full_name="L.J. Cason" first_name="L.J." last_name="Cason" position="G" primary_position="NA">
        <transfer id="eda2fbf2-aa6c-47ef-8c5b-9eb0e3b49ce0" desc="G L.J. Cason committed to the Miami (FL) Hurricanes." effective_date="2026-07-21" last_modified="2026-07-21T21:08:36+00:00" transaction_type="Committed" transaction_code="COM">
            <to_team id="7aec5187-cb1b-45e5-8f7d-406d766cdc73" name="Hurricanes" market="Miami (FL)"/>
        </transfer>
    </player>
</transfers>
{
    "league": {
        "id": "cd4268ee-07aa-4c4d-a435-ec44ad2c76cb",
        "name": "NCAA MEN",
        "alias": "NCAAM"
    },
    "start_time": "2026-07-22T04:00:00Z",
    "end_time": "2026-07-23T03:59:59Z",
    "players": [
        {
            "id": "51ccd285-2442-4099-9f59-b312d8088972",
            "full_name": "Harun Zrno",
            "first_name": "Harun",
            "last_name": "Zrno",
            "position": "G",
            "primary_position": "NA",
            "transfers": [
                {
                    "id": "6d4e1c82-8501-40ed-bff3-b0003eb786ba",
                    "desc": "G Harun Zrno committed to the Washington Huskies.",
                    "effective_date": "2026-07-22",
                    "last_modified": "2026-07-22T19:46:44+00:00",
                    "transaction_type": "Activated",
                    "transaction_code": "ACT",
                    "to_team": {
                        "id": "e52c9644-717a-46f4-bf16-aeca000b3b44",
                        "name": "Huskies",
                        "market": "Washington"
                    }
                }
            ]
        }
    ]
}