Upload via batch API
The Images batch API lets you make several requests in sequence while bypassing Cloudflare’s global API rate limits.
To use the Images batch API, you will need to obtain a batch token and use the token to make several requests. The requests authorized by this batch token are made to a separate endpoint and do not count toward the global API rate limits. Each token is subject to a rate limit of 200 requests per second. You can use multiple tokens if you require higher throughput to the Cloudflare Images API.
To obtain a token, you can use the new images/v1/batch_token
endpoint as shown in the example below.
After getting your token, you can use it to make requests for:
- Upload an image ↗ -
POST /images/v1
- Delete an image ↗ -
DELETE /images/v1/{identifier}
- Image details ↗ -
GET /images/v1/{identifier}
- Update image ↗ -
PATCH /images/v1/{identifier}
- List images V2 ↗ -
GET /images/v2
- Direct upload V2 ↗ -
POST /images/v2/direct_upload
These options use a different host and a different path with the same method, request, and response bodies.