API Reference

Create remove-logo PDF task

Create the processing task after uploading the source file.

post/v1/files/remove-logo-pdf

AuthorizationThis endpoint requires an API key. Pass it in the api-key header on every request. Learn more

Parameters

NameTypeStatusDescription
task_id
stringRequiredTask ID returned by the upload endpoint.

Responses

Task createdTaskCreatedResponse

FieldTypeDescription
task_idstringUnique task identifier. Poll the matching task-status endpoint for results.
statusstring
created_atintegerUnix timestamp of task creation
curl -X POST "https://api.snapedit.app/v1/files/remove-logo-pdf" \
  -H "api-key: YOUR_API_KEY" \
  -F "task_id=value"
Response
{
  "task_id": "task_abc123",
  "status": "CREATED",
  "created_at": 1745827200
}

Examples (1 example)

Input

Output