GET /health
Verify API key and check partner tier.
GET /health
Verify your API key is valid and check your partner account status.
Request
curl -H "X-API-Key: mp2p_test_xxx" \
https://mexicop2p.org/api/v1/healthResponse 200
{
"status": "ok",
"partner": "Acme Finance",
"tier": "GROWTH",
"timestamp": "2025-06-15T12:00:00.000Z"
}Response fields
| Field | Type | Description |
|---|---|---|
status | string | Always "ok" if authenticated |
partner | string | Your partner display name |
tier | string | FREE, GROWTH, or ENTERPRISE |
timestamp | string | ISO 8601 server timestamp |
Errors
| Code | HTTP | When |
|---|---|---|
MISSING_API_KEY | 401 | No X-API-Key header |
INVALID_API_KEY | 401 | Key doesn't match any partner |
PARTNER_INACTIVE | 403 | Account not active |