CribScore
Back to docs

Examples

Python Example for the Childcare API

This example is the shortest path from Python service code to live CribScore search and trust reads.

Backend integration

Python is a natural fit for underwriting services, ETL jobs, monitoring, and trust-aware recommendation workflows.

Python Search

import httpx

response = httpx.get(
    "https://api.cribscore.co/v1/facilities",
    params={"zip_code": "90003", "limit": 5},
    headers={"Authorization": "Bearer YOUR_API_KEY"},
    timeout=30.0,
)

print(response.json())

Related guides