Getting Started with the API

API & Developers · 5 min read

Authentication

All API requests require an API key passed in the Authorization header:

Authorization: Bearer YOUR_API_KEY

Getting Your API Key

  1. Go to Settings → API Keys.
  2. Click Generate Key.
  3. Copy the key — it's only shown once.
  4. Give it a descriptive name (e.g., "Production Server").

Base URL

https://api.grampixel.com/v1

Rate Limits

  • Starter — 60 requests/minute
  • Pro — 300 requests/minute
  • Agency — 1,000 requests/minute

Rate limit headers are included in every response: X-RateLimit-Remaining and X-RateLimit-Reset.

Full Documentation

Visit the API Reference for complete endpoint documentation with examples.

Was this helpful?