> ## Documentation Index
> Fetch the complete documentation index at: https://docs.olostep.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Crawl Info

> Haalt informatie op over een specifieke crawl.



## OpenAPI

````yaml nl/openapi/crawls.json GET /v1/crawls/{crawl_id}
openapi: 3.0.3
info:
  title: Crawl API
  version: 1.0.0
servers:
  - url: https://api.olostep.com
security: []
paths:
  /v1/crawls/{crawl_id}:
    get:
      summary: Haal crawl-informatie op
      description: >-
        Haalt informatie op over een specifieke crawl met behulp van zijn
        `crawl_id`.
      parameters:
        - name: crawl_id
          in: path
          required: true
          schema:
            type: string
          description: De ID van de crawl waarvoor je informatie wilt ophalen.
      responses:
        '200':
          description: Succesvolle reactie met crawl-informatie.
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    description: Crawl ID
                  object:
                    type: string
                    description: Het soort object. "crawl" voor deze endpoint.
                  status:
                    type: string
                    description: '`in_progress` of `completed`'
                  created:
                    type: number
                    description: Aangemaakte tijd in epoch
                  start_date:
                    type: string
                    description: Aangemaakte tijd in datum
                  start_url:
                    type: string
                  max_pages:
                    type: number
                  max_depth:
                    type: number
                  exclude_urls:
                    type: array
                    items:
                      type: string
                  include_urls:
                    type: array
                    items:
                      type: string
                  include_external:
                    type: boolean
                  search_query:
                    type: string
                  top_n:
                    type: number
                  current_depth:
                    type: number
                    description: De huidige diepte van het crawlproces.
                  pages_count:
                    type: number
                    description: Aantal gecrawlde pagina's
                  webhook:
                    type: string
                  follow_robots_txt:
                    type: boolean
                  credits_consumed:
                    type: integer
                    nullable: true
                    description: >-
                      Aantal credits verbruikt door dit verzoek. Wordt ingevuld
                      nadat de uitvoering is voltooid. Credits zijn de bron van
                      waarheid voor facturering.
                  cost_usd:
                    type: number
                    nullable: true
                    description: >-
                      Geschatte kosten in USD voor dit verzoek. Wordt ingevuld
                      nadat de uitvoering is voltooid. Berekend op basis van
                      verbruikte credits en je tariefplan — 99% nauwkeurig, maar
                      credits_consumed is de gezaghebbende waarde.
        '400':
          description: Foutieve aanvraag door onjuiste of ontbrekende parameters.
        '404':
          description: Crawl niet gevonden voor de opgegeven ID.
        '500':
          description: Interne serverfout.
      security:
        - Authorization: []
components:
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: >-
        Bearer authenticatie header in de vorm Bearer <token>, waar <token> jouw
        auth token is.

````