Developer
Documentation
Everything you need to integrate with The Glitch Store API proxy.
Quick Start
1. Create an account and get 100 free credits
2. Generate an API key from your dashboard
3. Make requests to the secure proxy endpoint
Base URL
https://theglitchstore.com/api/secure-proxy
All API calls go through this endpoint with query parameters for routing.
Authentication
Include your API key in the x-api-key header:
curl -X GET "https://theglitchstore.com/api/secure-proxy?api=demo-api&path=/get" \ -H "x-api-key: gstore_your_key_here"
Query Parameters
| Parameter | Required | Description |
|---|---|---|
| api | Yes | API slug from the marketplace (e.g. demo-api) |
| path | No | Path to append to the API base URL (e.g. /get) |
| * | No | Any additional query params are forwarded to the upstream API |
Error Codes
| Code | Meaning |
|---|---|
| 401 | Missing or invalid API key |
| 402 | Insufficient credits |
| 404 | API not found |
| 429 | Rate limit exceeded |
| 500 | Internal proxy error |
SDKs & Libraries
No SDK required — The Glitch Store works with any HTTP client. Use curl, fetch, axios, or any language's HTTP library.