Delivery methods
curl -X POST 'https://api.webit.live/api/v1/async/web' \
--header 'Authorization: Basic <credential string>' \
--header 'Content-Type: application/json' \
--data-raw '{
"url": "https://www.example.com",
"storage_type": "s3",
"storage_url" : "s3://Your.Repository.Path/",
"callback_url": "https://your.callback.url/path"
}'import requests
url = 'https://api.webit.live/api/v1/async/web'
headers = {
'Authorization': 'Basic <credential string>',
'Content-Type': 'application/json'
}
data = {
"url": "https://www.example.com",
"storage_type": "s3",
"storage_url" : "s3://Your.Repository.Path/",
"callback_url": "https://your.callback.url/path"
}
response = requests.post(url, headers=headers, json=data)
print(response.status_code)
print(response.json())Parameters
Parameter
Required
Description
Selecting a delivery method
Asynchronous Request Process

Status
Description
Initial Response
Checking Task Status
Checking Tasks List
Parameters
Parameter
Required
Description
Task Completion
Last updated












