Skip to main content

Pixel Labs API

The Pixel Labs API provides programmatic access to our Synthetix Vision Architecture for AI-powered NFT generation and Solana deployment.

Base URL

https://api.pixellabsai.app/v1

Authentication

All API requests require authentication via Bearer token in the Authorization header.
Authorization: Bearer your_api_key_here

Obtaining API Keys

  1. Navigate to the Developer Dashboard
  2. Create a new API key with appropriate permissions
  3. Store the key securely - it will only be shown once

Rate Limits

Free Tier - 60 requests/minute, 1,000 requests/day Pro Tier - 300 requests/minute, 50,000 requests/day Enterprise - 1,000 requests/minute, unlimited daily Rate limit headers are included in every response: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset.

Error Response Format

All errors follow a consistent structure:
{
  "error": "error_code",
  "message": "Human-readable error description",
  "details": {}
}

Common Error Codes

validation_error (400) - Invalid request parameters invalid_token (401) - Authentication token is invalid or expired insufficient_permissions (403) - Token lacks required scopes not_found (404) - Requested resource does not exist rate_limit_exceeded (429) - Too many requests internal_error (500) - Server-side error