Serverless and app backends
This pattern fits Next.js server components, route handlers, queue workers, and internal API adapters.
Examples
TypeScript teams can start with raw `fetch`, then layer in the OpenAPI contract or MCP depending on the integration style.
This pattern fits Next.js server components, route handlers, queue workers, and internal API adapters.
const response = await fetch("https://api.cribscore.co/v1/trust/jurisdictions?limit=25", {
headers: {
Authorization: "Bearer YOUR_API_KEY",
},
});
const trust = await response.json();
console.log(trust);Childcare API for Developers
Use the CribScore childcare API for facility search, facility detail, trust metrics, prices, and decision workflows.
Python Example for the Childcare API
Use Python and `httpx` to search facilities, read trust metrics, and integrate CribScore into backend workflows.
OpenAPI Reference for CribScore
Use the CribScore OpenAPI document for typed SDK generation, request inspection, API collections, and contract verification.