Naar hoofdinhoud gaan
GET
/
v1
/
crawls
/
{crawl_id}
Haal crawl-informatie op
curl --request GET \
  --url https://api.olostep.com/v1/crawls/{crawl_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "object": "<string>",
  "status": "<string>",
  "created": 123,
  "start_date": "<string>",
  "start_url": "<string>",
  "max_pages": 123,
  "max_depth": 123,
  "exclude_urls": [
    "<string>"
  ],
  "include_urls": [
    "<string>"
  ],
  "include_external": true,
  "search_query": "<string>",
  "top_n": 123,
  "current_depth": 123,
  "pages_count": 123,
  "webhook": "<string>",
  "follow_robots_txt": true
}

Autorisaties

Authorization
string
header
vereist

Bearer authenticatie header in de vorm Bearer , waarbij jouw auth token is.

Padparameters

crawl_id
string
vereist

De ID van de crawl waarvoor je informatie wilt ophalen.

Respons

Succesvolle reactie met crawl-informatie.

id
string

Crawl ID

object
string

Het soort object. "crawl" voor deze endpoint.

status
string

in_progress of completed

created
number

Aangemaakte tijd in epoch

start_date
string

Aangemaakte tijd in datum

start_url
string
max_pages
number
max_depth
number
exclude_urls
string[]
include_urls
string[]
include_external
boolean
search_query
string
top_n
number
current_depth
number

De huidige diepte van het crawlproces.

pages_count
number

Aantal gecrawlde pagina's

webhook
string
follow_robots_txt
boolean