Skip to main content
GET
/
v1
/
usage
Usage Statistics — Current month quota and daily breakdown
curl --request GET \
  --url https://api.fieldfunded.com/v1/usage \
  --header 'X-API-Key: <api-key>'
{
  "tier": "pro",
  "limits": {
    "per_second": 30,
    "per_hour": 30000,
    "per_month": 1000000
  },
  "current": {
    "today": 4521,
    "this_month": 89432,
    "month_remaining": 910568,
    "month_percent": 8.9,
    "avg_response_ms": 42,
    "errors_today": {
      "client": 3,
      "server": 0
    },
    "warning": {
      "level": "info",
      "message": "You have used 80% of your monthly quota.",
      "percent": 80
    }
  },
  "daily_breakdown": [
    {
      "date": "2026-04-15",
      "requests": 4521,
      "errors": 12
    },
    {
      "date": "2026-04-14",
      "requests": 3988,
      "errors": 9
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.fieldfunded.com/llms.txt

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

Authorizations

X-API-Key
string
header
required

Your FieldFunded API Key

Response

200 - application/json

The current API quota usage and daily request breakdown for your active plan.

tier
string
Example:

"pro"

limits
object
current
object
daily_breakdown
object[]