API Reference
Create remove-logo PDF upload URL
Get a signed upload URL. Upload the file to upload_url with HTTP PUT before creating the task.
post
/v1/files/remove-logo-pdf/uploadAuthorization — This endpoint requires an API key. Pass it in the api-key header on every request. Learn more
Responses
Signed upload URL createdUploadUrlResponse
| Field | Type | Description |
|---|---|---|
task_id | string | Task identifier to pass to the create-task endpoint. |
upload_url | string | Signed URL. Upload the file with HTTP PUT before creating the task. |
curl -X POST "https://api.snapedit.app/v1/files/remove-logo-pdf/upload" \
-H "api-key: YOUR_API_KEY"Response
{
"task_id": "task_abc123",
"upload_url": "https://storage.googleapis.com/upload/abc123"
}