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

# Beta headers

> Documentation for using beta headers with the Infinite Creator API.

Beta headers are reserved for experimental features before they become part of the standard API.

There are no active beta features at this time. The API accepts the header for forward compatibility and ignores unknown or unavailable values.

## How to use beta headers

When a beta feature is available, include the `infinitecreator-beta` header in your API requests:

<CodeGroup dropdown>
  ```http theme={null}
  POST /v1/tasks
  Content-Type: application/json
  Authorization: Bearer YOUR_API_KEY
  infinitecreator-beta: BETA_FEATURE_NAME
  ```
</CodeGroup>

<Warning>
  Beta features are experimental and may be deprecated or removed.
</Warning>

### Multiple beta features

To use multiple beta features in a single request, send multiple `infinitecreator-beta` headers:

```http theme={null}
infinitecreator-beta: feature-1
infinitecreator-beta: feature-2
```

### Version naming conventions

Beta feature names typically follow the pattern: `feature-name-YYYY-MM-DD`, where the date indicates when the beta version was released. Always use the exact beta feature name as documented.

## Error handling

If you send an invalid or unavailable beta header, the server ignores it, and the request proceeds normally.
