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>'
import requests

url = "https://api.fieldfunded.com/v1/usage"

headers = {"X-API-Key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};

fetch('https://api.fieldfunded.com/v1/usage', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.fieldfunded.com/v1/usage",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.fieldfunded.com/v1/usage"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("X-API-Key", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.fieldfunded.com/v1/usage")
.header("X-API-Key", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.fieldfunded.com/v1/usage")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "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
    }
  ]
}

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[]