Restore & PurgeZone Cache Prefetch

Zone Cache Prefetch

Prefetch cache of a HTTP push zone by pre-populating the specified files into the CDN cache before they are requested by users. Used by the Manage Cache "Prefetch" tab, which is gated behind the account's Advanced Features plan.

curl -X POST "https://api.5centscdn.com/v2/zones/http/push/42/prefetch" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{
  "files": [
    "/videos/file.mp4",
    "/images/logo.png"
  ]
}'
{
  "result": "success",
  "purgeId": "1234667788957"
}
POST
/zones/http/push/{zoneid}/prefetch
POST
Base URLstring

Target server for requests. Edit to use your own host.

API Key (header: X-API-Key)
X-API-Keystring
Required

API key (sent in header)

Content-Typestring
Required

The media type of the request body

Options: application/json
filesarray
Required

List of file paths to prefetch into the CDN cache. The Prefetch tab provides two path input fields (1-2 paths is the common case) and requires at least one non-empty path before submitting - there is no "prefetch all" option.

Request Preview
Response

Response will appear here after sending the request

Authentication

header
X-API-Keystring
Required

API Key for authentication. Provide your API key in the header.

Path Parameters

zoneidinteger
Required

Zone ID

Example:
42

Body

application/json
filesarray
Required

List of file paths to prefetch into the CDN cache. The Prefetch tab provides two path input fields (1-2 paths is the common case) and requires at least one non-empty path before submitting - there is no "prefetch all" option.

Example:
["/videos/file.mp4","/images/logo.png"]

Responses

resultstring

Status of the API response.

purgeIdstring

Unique identifier for this operation, returned in the success response and used to look up operation details via the purge history and purge details endpoints.