API Docs
GET
/api/v1/lineups/:agent
All lineups for a specific agent. Supports map, side, and ability filters.
Query Parameters
mapstringFilter by map name
sideattack | defense | bothFilter by side
abilitystringFilter by ability name
Example Request
curl "https://battlerecap.ziadhussein.com/api/v1/lineups/sova?side=attack"
Example Response
{
"agent": "Sova",
"total": 5,
"lineups": [
{
"id": "...",
"agent": "Sova",
"map": "Bind",
"side": "attack",
"ability": ["Recon Bolt"],
"title": "...",
"videoUrl": "..."
}
]
}