Connect your supplier systems directly to GymAxis AI for seamless equipment management, issue tracking, and service coordination.
Log into your GymAxis AI dashboard and navigate to Settings \u2192 API Keys. Click "Generate New API Key" and store it securely.
Include your API key in the X-API-Key header with every request:
curl -X GET "https://gymaxisai.com/api/v1/supplier/equipment" \ -H "X-API-Key: gfx_your_api_key_here"
/equipmentRetrieve all equipment for the authenticated customer
Response:
{
"equipment": [
{
"id": "uuid",
"name": "Treadmill 1",
"equipment_type": "Treadmill",
"manufacturer": "Life Fitness",
"model": "T5-Go",
"serial_number": "SN123456",
"stats": {
"total_issues": 3,
"open_issues": 1,
"total_audits": 2
}
}
],
"count": 1
}/equipment/{equipment_id}Get detailed information about specific equipment including issue history
Response:
{
"id": "uuid",
"name": "Treadmill 1",
"equipment_type": "Treadmill",
"manufacturer": "Life Fitness",
"stats": {...},
"issues": [...]
}/equipmentAdd new equipment to customer site (useful when installing new machines)
Request Body:
{
"name": "Treadmill 2",
"equipment_type": "Treadmill",
"manufacturer": "Life Fitness",
"model": "T5-Go",
"serial_number": "SN789012",
"warranty_expiry": "2027-12-31"
}/equipment/{equipment_id}Update equipment details
Request Body:
{
"notes": "Belt replaced on 2026-04-03",
"warranty_expiry": "2028-04-03"
}We use essential cookies to keep you signed in and provide core functionality. We do not use tracking or advertising cookies. Privacy Policy