Prefer to chat? Query the API with natural language using our AI Skill →
Give your AI tool live Cito endpoint context before you write integration code.
Public docs assistant
Tell Cito API what you are building.
Get endpoint recommendations, exact requests, code snippets, and a free-key CTA without digging through every page.
Back to Call of Duty API
Transfers
Track roster moves and player transfers across CDL teams
List Transfers
GET
/cod/transfersGet roster moves and player transfers including signings, releases, loans, and trades.
Query Parameters
| Parameter | Type | Description |
|---|---|---|
from | string | Filter by source team slug |
to | string | Filter by destination team slug |
player | string | Filter by player ID/IGN |
type | string | Transfer type (signed, released, loan, trade) |
limit | number | Results per page |
offset | number | Pagination offset |
Example Request
GET /api/v1/cod/transfers?to=optic-texas&limit=10Response
{
"success": true,
"count": 10,
"data": [
{
"id": "transfer_12345",
"player": {
"codPlayerId": "...",
"ign": "Dashy",
"imageUrl": "https://..."
},
"transferType": "signed",
"fromTeam": {
"slug": "la-thieves",
"name": "LA Thieves"
},
"toTeam": {
"slug": "optic-texas",
"name": "OpTic Texas"
},
"date": "2024-09-15",
"role": "Player"
},
{
"id": "transfer_12340",
"player": {
"codPlayerId": "...",
"ign": "Kenny",
"imageUrl": "https://..."
},
"transferType": "released",
"fromTeam": {
"slug": "optic-texas",
"name": "OpTic Texas"
},
"toTeam": null,
"date": "2024-09-10",
"role": "Player"
}
]
}