Get Platform Stats
GET
/api/v1/public/stats
const url = 'https://indepai.app/api/v1/public/stats';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://indepai.app/api/v1/public/statsGet aggregated public platform statistics for social proof (total calculations, users, countries). No authentication required. Cached for 1 hour.
Responses
Section titled “Responses”Platform statistics
Media typeapplication/json
object
calculations
required
Total calculations performed (rounded)
integer
users
required
Total registered users (rounded)
integer
countries
required
Number of countries represented
integer
Example
{ "calculations": 1200, "users": 350, "countries": 42}