Skip to content

← founding

GET/api/v1/founding/availability

Get Founding Availability

Returns the current count of claimed Founding spots vs the FOUNDING_QUOTA cap. Public (no auth) - consumed by the pricing page to render the "X / 100 spots remaining" badge. The counter is best-effort: Paddle webhook idempotency guarantees no double-claim, but a racing webhook delivery could cause a brief over-claim window before being reconciled.

Authentication

Public endpoint: no key required. Anonymous quotas still apply (see Rate limits).

Responses

StatusDescriptionSchema
200Successful ResponseFoundingAvailabilityResponse

See the standard error codes documented in the Error codes.

Code samples

Three ready-to-paste implementations. Replace $TRINITY_API_KEY with your API key (generated from the dashboard under Profile → API keys).

cURL

curl -X GET \
  'https://api.trinityinsights.io/api/v1/founding/availability'

Python

import os
import requests

BASE = "https://api.trinityinsights.io"
headers = {
}

response = requests.get(f"{BASE}/api/v1/founding/availability", headers=headers, timeout=10)
response.raise_for_status()
data = response.json()

JavaScript

const apiKey = process.env.TRINITY_API_KEY;

const response = await fetch(
  "https://api.trinityinsights.io/api/v1/founding/availability",
  {
    method: "GET",
    headers: {
    },
  },
);

if (!response.ok) {
  throw new Error(`HTTP ${response.status}`);
}
const data = await response.json();

Institutional disclaimer

Trinity Insights is an educational and analytical tool. Values returned by this endpoint do not constitute investment advice. Trinity Insights is not a Crypto-Asset Service Provider (CASP) registered under MiCA Regulation (EU) 2023/1114. See the full disclaimer.