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

ParameterRequiredDescription
apiYesAPI slug from the marketplace (e.g. demo-api)
pathNoPath to append to the API base URL (e.g. /get)
*NoAny additional query params are forwarded to the upstream API

Error Codes

CodeMeaning
401Missing or invalid API key
402Insufficient credits
404API not found
429Rate limit exceeded
500Internal 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.