v49

latestOpenAPI 3.0.2raw.githubusercontent.com2026-02-0620117129.6 KB
crawler

List configuration versions

Lists previous versions of the specified crawler's configuration, including who authored the change. Every time you update a crawler's configuration, a new version is added.

get/1/crawlers/{id}/config/versions

Path parameters

idstring required

Universally unique identifier (UUID) of the crawler.

Example:e0f6db8a-24f5-4092-83a4-1b2c6cb6d809

Crawler ID.

Query parameters

itemsPerPageinteger

Number of items per page of the paginated API response.

Number of items per page to retrieve.

pageinteger

Current page of the paginated API response.

Page to retrieve.

Response

OK

itemsPerPageinteger

Number of items per page of the paginated API response.

pageinteger

Current page of the paginated API response.

totalinteger

Total number of retrievable items.

Example response

{
  "total": 100,
  "items": [
    {
      "createdAt": "2023-07-04T12:49:15Z",
      "authorId": "7d79f0dd-2dab-4296-8098-957a1fdc0637"
    }
  ]
}