Developers
Web3 Meetups publishes a free, read-only public API for upcoming Web3, crypto, and blockchain events across India. No authentication, no API key, no rate-limit signup — just JSON.
Endpoint
GET https://web3meetups.xyz/api/events
Optionally filter to a single city with ?city= (case-insensitive, exact match, e.g.
Bangalore or Delhi NCR). A city with no upcoming events returns an empty array,
not an error.
Example request
curl "https://web3meetups.xyz/api/events?city=Bangalore"
Example response
{
"events": [
{
"date": "18 Jul",
"city": "Bangalore",
"name": "Event Name",
"link": "https://t.ly/xxxxx"
}
]
}
Errors
Errors are always JSON — {"error": {"code": "...", "message": "..."}} — with
400 for an empty city=, 405 for anything other than
GET, and 502 if the underlying data is temporarily unavailable.
Full spec & agent discovery
The complete request/response schema is in openapi.yaml (OpenAPI 3.0). Agents can also discover this API automatically via the Agent Skills index, or read llms.txt for a plain-language overview of the whole site.