Skip to main content
POST
/
api
/
v4
/
{customerId}
/
crawler
/
{crawlerId}
/
paths
Queue URLs
curl --request POST \
  --url https://api.cludo.com/api/v4/{customerId}/crawler/{crawlerId}/paths \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '[
  "<string>"
]'
[
  {
    "url": "<string>",
    "status": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Basic authentication. Use your Customer ID as the username and API Key as the password. Example header: Authorization: Basic MTIzNDU2NzpteS1hcGkta2V5.

Path Parameters

customerId
integer
required

Your Cludo Customer ID (same as in MyCludo and Basic auth username).

crawlerId
integer
required

Crawler (content source) ID from MyCludo.

Body

application/json

Response

URLs queued for crawling.

url
string<uri>

URL that was submitted to the crawl queue.

status
string

Per-URL acceptance code (e.g. Ok when queued successfully).