Batch Image
This API endpoint is for requesting batch processing of multiple image capture requests.
Endpoint
POST https://cdn.capture.techulus.in/batch-image/[your-api-key]
Authentication
All requests have to be authenticated using a signature header (x-req-signature)
x-req-signature is calculated as HMAC-SHA256
of JSON request body with api secret as the key.
Body (application/json)
Request body should contain an array data having details of the url to captured and any additional options if required. It can also include an optional notification_uri
(webhook) to receive notification when the requests is completely processed. Options can include any of the request queries mentioned in our documentation (https://docs.capture.techulus.in). Any errors in the request will be mentioned in the notification send to notification_uri.
Example
{
"notification_uri": "https://hookb.in/KxQ9ROjo",
"data": [
{
"url": "https://news.ycombinator.com",
"options": {
"file_name": "news"
}
},
{
"url": "https://news.ycombinator.com",
"options": {
"full": true
}
}
]
}
Sample Request and Response: https://paw.pt/cWEfEHqw