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.

Open AI Skill

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/transfers

Get roster moves and player transfers including signings, releases, loans, and trades.

Query Parameters

ParameterTypeDescription
fromstringFilter by source team slug
tostringFilter by destination team slug
playerstringFilter by player ID/IGN
typestringTransfer type (signed, released, loan, trade)
limitnumberResults per page
offsetnumberPagination offset

Example Request

GET /api/v1/cod/transfers?to=optic-texas&limit=10

Response

{
  "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"
    }
  ]
}