Skip to main content
Hero Light

What is PeelAPI?

PeelAPI provides purpose-built AI models designed for specific use cases through a simple REST API. Instead of general-purpose models, we offer specialized endpoints optimized to excel at particular tasks - delivering superior results for your specific needs.

Key Features

  • Specialized AI Models - Purpose-built models optimized for specific tasks, not generic catch-all solutions
  • Simple REST API - Straightforward HTTP requests with JSON responses
  • Asynchronous Processing - All jobs are processed asynchronously with real-time status updates
  • Credit-Based Pricing - Pay only for what you use with transparent, per-request pricing
  • Production Ready - Built for scale with rate limiting, error handling, and comprehensive documentation

Getting Started

Everything you need to start making requests to PeelAPI:

API Essentials

Base URL

All API endpoints use the following base URL:
https://api.peelapi.com/v1

Authentication

Include your API key in the Authorization header with the Bearer scheme:
Authorization: Bearer sk_live_v1_your_key_here

Response Format

All API responses follow a consistent envelope structure:
{
  "data": {
    // Response payload
  },
  "errors": null
}
When errors occur, the response includes error details:
{
  "data": null,
  "errors": [
    {
      "code": "ERROR_CODE",
      "message": "Human-readable error message"
    }
  ]
}