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

# 获取镜像预热配额信息

## 请求头

<ParamField header="Content-Type" type="string" required={true}>
  枚举值：application/json。
</ParamField>

<ParamField header="Authorization" type="string" required={true}>
  Bearer 身份验证格式，例如：Bearer \{\{API 密钥}}。
</ParamField>

## 示例

```bash theme={null}
curl --location --request GET 'https://api.ppio.com/gpu-instance/openapi/v1/image/prewarm/quota' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {{API_KEY}}'
```

## 响应参数

<ResponseField name="total" type="integer" required={true}>
  已创建的预热任务数。
</ResponseField>

<ResponseField name="limit" type="integer" required={true}>
  最大可创建的预热任务数。
</ResponseField>

<ResponseField name="perImageSize" type="integer" required={true}>
  单个镜像允许的最大大小（GB）。
</ResponseField>

## 响应示例

```json theme={null}
{
  "total": 2,
  "limit": 5,
  "perImageSize": 100
}
```
