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

# Grok Image

> xAI image generation API for text-to-image and image-to-image workflows

## Overview

Grok Image is an xAI image model for text-to-image generation and single-reference image-to-image workflows. Use this page when you are ready to call the API after trying the model in the APIXO playground.

| Capability       | Value                                   |
| ---------------- | --------------------------------------- |
| Model ID         | `grok-image`                            |
| Modes            | `text-to-image`, `image-to-image`       |
| Prompt length    | 1-5000 characters                       |
| Reference images | 1 URL for `image-to-image`              |
| Aspect ratios    | `1:1`, `3:2`, `2:3` for `text-to-image` |
| Output           | Image URL in `resultJson.resultUrls`    |

## Endpoint and authentication

Base URL:

```text theme={null}
https://api.apixo.ai/api/v1
```

| Method | Endpoint                                 | Purpose                               |
| ------ | ---------------------------------------- | ------------------------------------- |
| `POST` | `/generateTask/grok-image`               | Submit a generation task              |
| `GET`  | `/statusTask/grok-image?taskId={taskId}` | Poll task status and retrieve results |

All requests require your APIXO API key:

```http theme={null}
Authorization: Bearer YOUR_API_KEY
```

Submit requests also require:

```http theme={null}
Content-Type: application/json
```

## Copy-paste async quickstart

This minimal request submits a text-to-image task and returns a `taskId`.

```bash theme={null}
curl -X POST "https://api.apixo.ai/api/v1/generateTask/grok-image" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "request_type": "async",
    "input": {
      "mode": "text-to-image",
      "prompt": "a cozy cyberpunk cafe with neon lights",
      "aspect_ratio": "3:2"
    }
  }'
```

Successful response:

```json theme={null}
{
  "code": 200,
  "message": "success",
  "data": {
    "taskId": "task_12345678"
  }
}
```

Save the `taskId`; you need it to poll for the final result.

## Poll for result

```bash theme={null}
curl -X GET "https://api.apixo.ai/api/v1/statusTask/grok-image?taskId=task_12345678" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

Processing response:

```json theme={null}
{
  "code": 200,
  "message": "success",
  "data": {
    "taskId": "task_12345678",
    "state": "processing",
    "createTime": 1767965610929
  }
}
```

Success response:

```json theme={null}
{
  "code": 200,
  "message": "success",
  "data": {
    "taskId": "task_12345678",
    "state": "success",
    "resultJson": "{\"resultUrls\":[\"https://file.apixo.ai/xxx.png\"]}",
    "createTime": 1767965610929,
    "completeTime": 1767965635929,
    "costTime": 25000
  }
}
```

Failed response:

```json theme={null}
{
  "code": 200,
  "message": "success",
  "data": {
    "taskId": "task_12345678",
    "state": "failed",
    "failCode": "SensitiveContent",
    "failMsg": "Content violates provider policy, please adjust the prompt",
    "createTime": 1767965610929,
    "completeTime": 1767965620132,
    "costTime": 9039
  }
}
```

Parse `resultJson` after `state` becomes `success`:

```javascript theme={null}
const payload = JSON.parse(data.resultJson);
const imageUrls = payload.resultUrls;
```

## Request body

### Text-to-image

```json theme={null}
{
  "request_type": "async",
  "input": {
    "mode": "text-to-image",
    "prompt": "a serene mountain landscape at dawn",
    "aspect_ratio": "2:3"
  }
}
```

### Image-to-image

```json theme={null}
{
  "request_type": "async",
  "input": {
    "mode": "image-to-image",
    "prompt": "turn this photo into a cinematic portrait",
    "image_urls": [
      "https://example.com/ref.png"
    ]
  }
}
```

## Parameters

<ParamField body="request_type" type="string" default="async">
  Result delivery mode. Omit this field or use `async` for polling with `statusTask`, or use `callback` for webhook delivery.
</ParamField>

<ParamField body="callback_url" type="string">
  Required when `request_type` is `callback`. Provide a public HTTPS URL that can receive the final task payload. See [Webhooks](/api-reference/webhooks).
</ParamField>

<ParamField body="input" type="object" required>
  Grok Image input parameters.

  <Expandable title="properties">
    <ParamField body="mode" type="string" required>
      Generation mode. Supported values: `text-to-image`, `image-to-image`.
    </ParamField>

    <ParamField body="prompt" type="string" required>
      Text prompt describing the desired image or edit. Supports 1-5000 characters. Empty prompts are rejected.
    </ParamField>

    <ParamField body="aspect_ratio" type="string" default="1:1">
      Output aspect ratio for `text-to-image`. Supported values: `1:1`, `3:2`, `2:3`. This parameter is not forwarded for `image-to-image`.
    </ParamField>

    <ParamField body="image_urls" type="string[]">
      Reference image URLs. Required for `image-to-image`. Supports exactly 1 URL. The URL must be public and each array item must be a non-empty string.
    </ParamField>
  </Expandable>
</ParamField>

## Response format

### Submit task response

`POST /generateTask/grok-image` returns a task ID when the task is accepted:

<ResponseField name="code" type="integer">
  API status code. `200` means the task was accepted.
</ResponseField>

<ResponseField name="message" type="string">
  Human-readable status message.
</ResponseField>

<ResponseField name="data.taskId" type="string">
  Unique task identifier used with the status endpoint.
</ResponseField>

### Status response fields

<ResponseField name="taskId" type="string">
  Unique task identifier.
</ResponseField>

<ResponseField name="state" type="string">
  Current task state: `pending`, `processing`, `success`, or `failed`.
</ResponseField>

<ResponseField name="resultJson" type="string">
  JSON string containing the generated image URLs. Present when `state` is `success`.
</ResponseField>

<ResponseField name="failCode" type="string">
  Machine-readable failure code. Present when `state` is `failed`.
</ResponseField>

<ResponseField name="failMsg" type="string">
  Human-readable failure message. Present when `state` is `failed`.
</ResponseField>

<ResponseField name="createTime" type="integer">
  Task creation timestamp in Unix milliseconds.
</ResponseField>

<ResponseField name="completeTime" type="integer">
  Task completion timestamp in Unix milliseconds. Present after completion.
</ResponseField>

<ResponseField name="costTime" type="integer">
  Processing duration in milliseconds. Present after completion.
</ResponseField>

## Webhook callback mode

Use callback mode when your backend should receive the final result automatically instead of polling.

```bash theme={null}
curl -X POST "https://api.apixo.ai/api/v1/generateTask/grok-image" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "request_type": "callback",
    "callback_url": "https://your-server.com/webhooks/apixo",
    "input": {
      "mode": "text-to-image",
      "prompt": "a clean product photo of wireless earbuds on soft stone",
      "aspect_ratio": "1:1"
    }
  }'
```

Callback delivery uses the same final payload shape as the status response. See [Webhooks](/api-reference/webhooks) for delivery requirements and retry behavior.

## Billing

Grok Image is billed per generated image. Both supported modes use the same APIXO public price.

| Mode             | APIXO price     |
| ---------------- | --------------- |
| `text-to-image`  | `$0.10 / image` |
| `image-to-image` | `$0.10 / image` |

For current route and market comparison pricing, see [Pricing](https://apixo.ai/pricing).

## Latency and polling

Actual latency may vary by prompt complexity, reference image access, provider queue load, and result storage time.

| Mode             | Typical generation time | Recommended first poll  | Poll interval |
| ---------------- | ----------------------- | ----------------------- | ------------- |
| `text-to-image`  | About 25s on average    | 15s after task creation | 3s            |
| `image-to-image` | About 25s on average    | 15s after task creation | 3s            |

<Tip>
  For high-concurrency production workloads, use callback mode to avoid frequent polling.
</Tip>

Result URLs are valid for 15 days. Download and store important outputs promptly.

Prompts can be written in English or Chinese. More specific scene, style, lighting, and composition details usually produce better results. Output is PNG by default; if you need transparency, describe that requirement in the prompt.

Rate limits and concurrency can vary by account, API key, and route. If you receive `429`, slow down requests and retry with backoff. For account-level details, see [System APIs](/api-reference/system).

## Errors and troubleshooting

### HTTP errors

| Code  | Meaning                                                                                                                           | What to do                                           |
| ----- | --------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------- |
| `400` | Invalid request body, missing `mode`, missing `prompt`, invalid `aspect_ratio`, malformed `image_urls`, or inaccessible image URL | Fix the request before retrying                      |
| `401` | Missing or invalid API key                                                                                                        | Check the `Authorization` header                     |
| `402` | Insufficient balance or quota                                                                                                     | Add balance or switch account/key                    |
| `429` | Rate limit or concurrency limit reached                                                                                           | Retry with exponential backoff                       |
| `500` | Internal error or unknown task failure                                                                                            | Retry with backoff or contact support if it persists |
| `502` | Upstream provider or network error                                                                                                | Retry with backoff                                   |

### Validation notes

| Parameter            | Backend behavior                                                                                                 |
| -------------------- | ---------------------------------------------------------------------------------------------------------------- |
| `input.mode`         | Required for routing. Must be `text-to-image` or `image-to-image`.                                               |
| `input.prompt`       | Required string. Must not be empty and must not exceed 5000 characters.                                          |
| `input.aspect_ratio` | Optional for `text-to-image`. Must be `1:1`, `3:2`, or `2:3` if provided. Defaults to `1:1` for `text-to-image`. |
| `input.image_urls`   | Required and non-empty for `image-to-image`. Must be an array of strings and cannot contain more than 1 image.   |

### Task failure codes

`failCode` is generated from APIXO's mapped provider error. Common values include:

| Fail code              | Meaning                                                      | What to do                                              |
| ---------------------- | ------------------------------------------------------------ | ------------------------------------------------------- |
| `PromptInvalid`        | Prompt was invalid or rejected by the provider               | Rewrite the prompt and retry                            |
| `SensitiveContent`     | Prompt or input/output content was rejected by safety checks | Change the prompt or reference image                    |
| `ImageFormatIncorrect` | Reference image format could not be processed                | Use a public, direct image URL in a common image format |
| `RateLimited`          | Provider rate limit was reached                              | Retry with exponential backoff                          |
| `Timeout`              | Provider timeout                                             | Retry later or use callback mode                        |
| `Unknown error`        | Provider returned an unmapped failure                        | Retry with backoff or contact support with the `taskId` |

See [Error Codes](/api-reference/errors) for the full error reference.

## Related links

* [Generation API Overview](/models)
* [Generate Task](/api-reference/generate-task)
* [Status Task](/api-reference/status-task)
* [Webhooks](/api-reference/webhooks)
* [Error Codes](/api-reference/errors)
* [Parameter Specification](/api-reference/parameters)
* [Routing Strategies](/concepts/routing-strategies)
* [Pricing](https://apixo.ai/pricing)
