コンテンツにスキップ

API Overview

このコンテンツはまだ日本語訳がありません。

The Eazip API is a RESTful API that allows you to convert remote file lists into a single ZIP file.

All API requests should be made to:

https://api.eazip.io

All protected endpoints require authentication via API key. Include your key in the X-API-Key header:

X-API-Key: YOUR_API_KEY

GET /download/:token is the main exception and does not require an API key.

See Authentication for details.

  • Use Content-Type: application/json for POST requests
  • All parameter names use snake_case

Responses are JSON objects with a success boolean. The shape of the response body varies by endpoint — there is no universal data wrapper.

{
"success": true,
// Endpoint-specific fields (e.g. "job", "jobs", "api_key", "api_keys" ...)
}
{
"success": false,
"error": {
"code": "ERROR_CODE",
"message": "Human-readable error message",
"issues": []
}
}

issues is present only for validation errors (HTTP 400).

CodeDescription
200Success
201Created
400Bad Request — Invalid or missing parameters
401Unauthorized — Authentication required, invalid API key, or expired API key
403Forbidden — Plan limit or quota exceeded
404Not Found — Resource doesn’t exist
500Internal Server Error

See individual endpoint documentation for details: