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/upload

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

Responses

Signed upload URL createdUploadUrlResponse

FieldTypeDescription
task_idstringTask identifier to pass to the create-task endpoint.
upload_urlstringSigned 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"
}