API

Access player data, statistics, contracts, and more

API Overview

Endpoints for accessing player data

The API provides access to comprehensive player data, including basic information, contract details, physical attributes, and more. Use this API to build applications that require player information.

Base URL

https://capwages.com/api/gateway/v1

Available Endpoints

EndpointMethodDescription
/players
GET
List players with pagination
/players/:slug
GET
Get detailed information for a specific player
/lineups/:teamSlug
GET
Get the current lineup for a team

Response Format:

All API responses are returned in JSON format. Successful responses will have a 200 OK status code and follow this schema:

{
  "apiVersion": "1.0",
  "success": true,
  "data": /* payload */,
  "meta": /* metadata such as pagination or lastUpdated */
}