Skip to main content
GET
/
v1
/
health
Health — Service connectivity and data freshness
curl --request GET \
  --url https://api.fieldfunded.com/v1/health \
  --header 'X-API-Key: <api-key>'
{
  "status": "healthy",
  "version": "1.0.0",
  "uptime_seconds": 86400,
  "timestamp": "2026-04-14T18:00:00.000Z",
  "services": {
    "redis": {
      "status": "connected",
      "latency_ms": 9
    },
    "data_pipeline": {
      "status": "active",
      "last_update_seconds_ago": 12,
      "total_events": 1847
    }
  }
}

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

Real-time system health metrics, latency data, and active event counts.

status
enum<string>
Available options:
healthy,
degraded,
unhealthy
Example:

"healthy"

version
string
Example:

"1.0.0"

uptime_seconds
integer
Example:

86400

timestamp
string<date-time>
Example:

"2026-04-14T18:00:00.000Z"

services
object