API Docs
GET

/api/v1/lineups/:agent/:map

Lineups for a specific agent and map combination.

Query Parameters

sideattack | defense | bothFilter by side
abilitystringFilter by ability name

Example Request

curl "https://battlerecap.ziadhussein.com/api/v1/lineups/sova/bind"

Example Response

{
  "agent": "Sova",
  "map": "Bind",
  "total": 2,
  "lineups": [
    {
      "id": "...",
      "agent": "Sova",
      "map": "Bind",
      "side": "attack",
      "ability": ["Recon Bolt"],
      "title": "...",
      "videoUrl": "..."
    }
  ]
}