Authorizations
Your unique Avido API key
Your unique Avido Application ID
Path Parameters
The unique identifier of the scrape job
"123e4567-e89b-12d3-a456-426614174000"
Body
Request body for updating a scrape job's pages
The new name/title of the scrape job
"Documentation Scrape Updated"
The status of the scrape job
PENDING, IN_PROGRESS, RUNNING, COMPLETED, FAILED "PENDING"
Array of page URLs to update
[
{
"url": "https://example.com/page1",
"title": "Page 1",
"description": "This is the first page of the documentation.",
"category": "Documentation"
},
{ "url": "https://example.com/page2" }
]Response
Scrape job updated successfully
Response containing the updated scrape job details A scrape job for extracting content from a website
The unique identifier of the scrape job
"123e4567-e89b-12d3-a456-426614174000"
When the scrape job was created
"2024-01-05T12:34:56.789Z"
When the scrape job was last modified
"2024-01-05T12:34:56.789Z"
Organization ID that owns the scrape job
"org_123"
User ID who initiated the scrape job
"user_123"
The name/title of the scrape job
"Documentation Scrape"
The URL that was scraped
"https://example.com"
Current status of the scrape job The status of the scrape job
PENDING, IN_PROGRESS, RUNNING, COMPLETED, FAILED "PENDING"
The pages scraped from the URL
[
{
"url": "https://example.com/page1",
"title": "Page 1",
"description": "This is the first page of the documentation.",
"category": "Documentation"
},
{ "url": "https://example.com/page2" }
]