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.

Getting access

The API is a standalone subscription, available with or without a CapWages plan. Subscribe to CapWages API, then generate an API key from Settings. Keys are shown once at creation, so store yours securely.

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 */
}