Developer Quickstart

Zero to API response in under 2 minutes

No credit card. No verification. Get a working API call right now.

1

Get your API key

Email-only signup. 30 seconds.

Free tier: 1,000 requests/month. No credit card required.

2

Run your first query

Hit the real API. See real results.

3

Copy working code

Your API key is already filled in.

import requests

response = requests.post(
    "https://examozhi.com/api/v1/content/search",
    headers={"X-API-Key": "YOUR_API_KEY"},
    json={"query": "Explain photosynthesis", "page_size": 5}
)
print(response.json())