api.x16z.org/v1
The x16 API
Every startup a16z backs and every coin launched on x16, as JSON. Read only, free, and no key.
Base URL
API referencehttps://api.x16z.org/v1- Endpoints
- 7
- Startups
- 860
- Sectors
- 9
- Coins launched
- 0
Try it
Real answers from the live API.
Stats
The whole of x16 in one object: how many startups can be picked, how many coins have launched, what they add up to, and the launch fee.
GEThttps://api.x16z.org/v1/stats
Answer
Press Send to call /v1/stats.In your code
Every endpoint and fieldcurl
curl "https://api.x16z.org/v1/startups?sector=AI&limit=5"
JavaScript
const res = await fetch("https://api.x16z.org/v1/startups?sector=AI&limit=5");
const { data, meta } = await res.json();
console.log(meta.total, data.map((s) => s.name));Python
import requests
r = requests.get("https://api.x16z.org/v1/startups", params={"sector": "AI", "limit": 5})
body = r.json()
print(body["meta"]["total"], [s["name"] for s in body["data"]])