Skip to main content

Endpoint

GET https://v3.football.sportsapipro.com/status
The /status endpoint is available on every V3 host (v3.{sport}.sportsapipro.com) and returns the same payload regardless of which sport host you call.

Description

Returns account information, current plan, and live daily usage for V3. Quota is shared. V1, V2, and V3 requests all count against the same daily limit on your account. The requests_today value you see here is the same counter shown on the dashboard and on the V1/V2 /status endpoints.

Request

curl -X GET "https://v3.football.sportsapipro.com/status" \
  -H "x-api-key: YOUR_API_KEY"

Response

{
  "success": true,
  "api": "SportsAPI Pro - V3 (Multi-sport)",
  "version": "v3",
  "account": {
    "email": "user@example.com",
    "name": "John Doe",
    "plan": "Pro",
    "member_since": "2024-01-15T10:30:00Z"
  },
  "usage": {
    "requests_today": 245,
    "daily_limit": 7500,
    "remaining": 7255,
    "reset_at": "2026-06-12T00:00:00.000Z"
  },
  "note": "Daily quota is shared across V1, V2, and V3 endpoints for your account."
}

Rate-limit headers

Every V3 response includes:
HeaderDescription
X-RateLimit-LimitYour daily request limit
X-RateLimit-RemainingRequests remaining today
X-RateLimit-ResetUTC timestamp when the quota resets (00:00 UTC)

Plan Limits (shared with V1 and V2)

PlanDaily Limit
Free100
Pro7,500
Ultra75,000
Mega150,000

Dashboard

V3 requests are also reflected in your dashboard under daily usage, monthly totals, and the recent-requests table.
Last modified on June 11, 2026