FactGrid's data is freely available under the CC BY 4.0 license. Use our API to build comparison tools, dashboards, or analyses — attribution required. Rate-limited and cached at the Cloudflare edge for performance.
Entity Catalog Endpoint
Returns a catalog of all independently audited entities — slugs and names. Use this to discover available entities.
Returns a minimal catalog of all independently audited entities in the archive.
No authentication required. Use the returned slugs to fetch detailed data from the
/api/v1/entities/{slug} detail endpoint.
Example Request
curl https://factgrid.org/api/v1/entities {
"total": 18,
"filter_applied": "verification_status=VERIFIED",
"entities": [
{ "slug": "airtable", "name": "Airtable" },
{ "slug": "asana", "name": "Asana" },
{ "slug": "clickup", "name": "ClickUp" },
{ "slug": "monday-com", "name": "Monday.com" }
],
"links": {
"detail": "/api/v1/entities/{slug}",
"full_catalog": "/api/v1/entities?include=all"
},
"_meta": {
"source": "FactGrid Open Data Archive",
"license": "CC BY 4.0",
"license_url": "https://creativecommons.org/licenses/by/4.0/",
"api_docs": "https://factgrid.org/api-docs",
"note": "Showing independently audited entities only. Use ?include=all for the full archive index.",
"timestamp": "2026-04-08T00:00:00.000Z"
}
} Entity Data Endpoint
Returns audited entity data including pricing, SLA, and API telemetry.
Parameters
| Name | Type | Description |
|---|---|---|
| slug | string (path) | URL-safe entity identifier, e.g. monday-com |
Example Request
Live · 200 OKcurl https://factgrid.org/api/v1/entities/monday-com {
"entity_id": "86b5b835-3b07-4f6d-a018-24f18b63db5c",
"slug": "monday-com",
"canonical_name": "Monday.com",
"domain": "monday.com",
"category": "Enterprise Work Management",
"tier": "A",
"verification_status": "VERIFIED",
"core_data": {
"pricing": {
"starting_price_usd": "9",
"min_seats_required": "3",
"billing_period": "monthly"
},
"sla": {
"uptime_percentage": "99.9",
"tier_requirement": "Enterprise",
"sla_type": "committed"
},
"api_limits": {
"rate_limit_value": "1000/day",
"system_type": "REST"
},
"data_sources": {
"pricing_url": "https://monday.com/pricing",
"api_docs_url": "https://support.monday.com/hc/en-us/articles/26471164460690-API-Rate-Limits"
}
},
"_meta": {
"source": "FactGrid Open Data Archive",
"license": "CC BY 4.0",
"license_url": "https://creativecommons.org/licenses/by/4.0/",
"api_docs": "https://factgrid.org/api-docs",
"timestamp": "2026-04-08T00:00:00.000Z"
}
} Rate Limiting & Caching
Responses are cached at the Cloudflare edge for 1 hour with a 24-hour stale-while-revalidate window. There is no hard rate limit enforced via API keys — Cloudflare's built-in DDoS protection and edge caching absorb the load.
| Response Code | Condition |
|---|---|
| 200 OK | Entity found and audited. JSON payload returned. |
| 400 Bad Request | Malformed request or missing slug. |
| 404 Not Found | Entity slug does not exist or is not audited. |
| 500 Internal Server Error | Database query failed. Retry after a short delay. |
Attribution & License
All data returned by this API is licensed under Creative Commons Attribution 4.0 International (CC BY 4.0). You are free to use, share, and build with this data — provided you give attribution to FactGrid.
Required Attribution
Include one of the following in your application or documentation:
- "Data sourced from FactGrid (factgrid.org)"
- "Powered by FactGrid Open Data Archive"
- Or a link to
https://factgrid.org
Build with FactGrid
FactGrid data is used by developers, researchers, and automated systems worldwide. If you build something using this API, attribution to FactGrid is all we ask — consistent with the CC BY 4.0 license.
Questions or integration support: data@factgrid.org