Skip to main content
GET
/
api
/
v1
/
inbox
/
stats
curl -X GET "https://api.foxreach.io/api/v1/inbox/stats" \
  -H "X-API-Key: otr_your_key"
{
  "data": {
    "total": 142,
    "unread": 23,
    "interested": 45,
    "notInterested": 38,
    "outOfOffice": 12,
    "uncategorized": 8,
    "unknown": 16,
    "totalSent": 67
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.foxreach.io/llms.txt

Use this file to discover all available pages before exploring further.

Response

data
object
curl -X GET "https://api.foxreach.io/api/v1/inbox/stats" \
  -H "X-API-Key: otr_your_key"
{
  "data": {
    "total": 142,
    "unread": 23,
    "interested": 45,
    "notInterested": 38,
    "outOfOffice": 12,
    "uncategorized": 8,
    "unknown": 16,
    "totalSent": 67
  }
}

Rate Limit

  • 100 requests per minute, per API key. Fixed 60-second window.
  • Every response includes X-RateLimit-Limit, X-RateLimit-Remaining, and X-RateLimit-Reset (unix epoch seconds).
  • A 429 response includes a Retry-After header (seconds until the bucket resets).
For client-side patterns (Retry-After, exponential backoff, monitoring X-RateLimit-Remaining), see Rate Limiting.