> ## 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-Informationen

> Ruft Informationen über einen bestimmten Crawl ab.



## OpenAPI

````yaml de/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: Crawl-Informationen abrufen
      description: >-
        Ruft Informationen über einen bestimmten Crawl mithilfe seiner
        `crawl_id` ab.
      parameters:
        - name: crawl_id
          in: path
          required: true
          schema:
            type: string
          description: Die ID des Crawls, für den Informationen abgerufen werden sollen.
      responses:
        '200':
          description: Erfolgreiche Antwort mit Crawl-Informationen.
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    description: Crawl-ID
                  object:
                    type: string
                    description: Die Art des Objekts. "crawl" für diesen Endpunkt.
                  status:
                    type: string
                    description: '`in_progress` oder `completed`'
                  created:
                    type: number
                    description: Erstellungszeit im Epoch-Format
                  start_date:
                    type: string
                    description: Erstellungszeit im Datumsformat
                  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: Die aktuelle Tiefe des Crawl-Prozesses.
                  pages_count:
                    type: number
                    description: Anzahl der gecrawlten Seiten
                  webhook:
                    type: string
                  follow_robots_txt:
                    type: boolean
                  credits_consumed:
                    type: integer
                    nullable: true
                    description: >-
                      Anzahl der durch diese Anfrage verbrauchten Credits. Wird
                      nach Abschluss der Ausführung ausgefüllt. Credits sind die
                      Grundlage für die Abrechnung.
                  cost_usd:
                    type: number
                    nullable: true
                    description: >-
                      Geschätzte Kosten in USD für diese Anfrage. Wird nach
                      Abschluss der Ausführung ausgefüllt. Berechnet aus den
                      verbrauchten Credits und deinem Tarif — 99% genau, aber
                      credits_consumed ist der maßgebliche Wert.
        '400':
          description: Ungültige Anfrage aufgrund falscher oder fehlender Parameter.
        '404':
          description: Crawl für die angegebene ID nicht gefunden.
        '500':
          description: Interner Serverfehler.
      security:
        - Authorization: []
components:
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: >-
        Bearer-Authentifizierungsheader in der Form Bearer <token>, wobei
        <token> dein Authentifizierungstoken ist.

````