> ## Documentation Index
> Fetch the complete documentation index at: https://developer.pixelbyte.app/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> Access the world's best AI models through a single, unified API

# Welcome to PixelByte API

PixelByte provides a unified API to access multiple AI models for image generation, video creation, and more. One integration, unlimited possibilities.

## Base URL

All API requests are made to:

```
https://api.muvi.video/v1
```

## Key Features

<CardGroup cols={2}>
  <Card title="Multi-Model Access" icon="grid-2">
    Access models from Google, OpenAI, Stability AI, Runway, and more through a single API.
  </Card>

  <Card title="Pay Per Use" icon="credit-card">
    No subscriptions or minimums. Only pay for what you use with micro-cent precision.
  </Card>

  <Card title="Simple Integration" icon="code">
    Submit a job, poll for status, get your result. Three steps to AI-powered content.
  </Card>

  <Card title="Webhook Support" icon="bell">
    Get notified when jobs complete via webhooks instead of polling.
  </Card>
</CardGroup>

## How It Works

1. **Submit a job** with your model and input parameters
2. **Check the status** or wait for a webhook callback
3. **Get the output** - image URL, video URL, or other content

## Response Format

All endpoints return a consistent JSON envelope:

```json theme={null}
{
  "success": true,
  "data": { ... },
  "requestId": "req_abc123"
}
```

Error responses:

```json theme={null}
{
  "success": false,
  "error": {
    "code": "ERROR_CODE",
    "message": "Human-readable message",
    "details": {}
  },
  "requestId": "req_abc123"
}
```

## Monetary Values

All monetary values use **micro-cents** precision:

| Micro-cents | USD     |
| ----------- | ------- |
| 1,000,000   | \$1.00  |
| 100,000     | \$0.10  |
| 10,000      | \$0.01  |
| 1,000       | \$0.001 |

<Note>
  Use the [Estimate endpoint](/api-reference/jobs/estimate) to calculate costs before submitting jobs.
</Note>
