API Reference
Create remove-logo PDF task
Create the processing task after uploading the source file.
post
/v1/files/remove-logo-pdfAuthorization — This endpoint requires an API key. Pass it in the api-key header on every request. Learn more
Parameters
| Name | Type | Status | Description |
|---|---|---|---|
task_id | string | Required | Task ID returned by the upload endpoint. |
Responses
Task createdTaskCreatedResponse
| Field | Type | Description |
|---|---|---|
task_id | string | Unique task identifier. Poll the matching task-status endpoint for results. |
status | string | |
created_at | integer | Unix 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
}