> ## Documentation Index
> Fetch the complete documentation index at: https://student-213fb9fc.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Obtener errores de rastreo

> Nota: Ya está disponible una nueva [versión v2 de esta API](/es/api-reference/endpoint/crawl-get-errors), con funcionalidades y rendimiento mejorados.


## OpenAPI

````yaml es/api-reference/v1-openapi.json get /crawl/{id}/errors
openapi: 3.0.0
info:
  title: Firecrawl API
  version: v1
  description: >-
    API para interactuar con los servicios de Firecrawl y realizar tareas de
    scraping y rastreo web.
  contact:
    name: Firecrawl Support
    url: https://firecrawl.dev/support
    email: support@firecrawl.dev
servers:
  - url: https://api.firecrawl.dev/v1
security:
  - bearerAuth: []
paths:
  /crawl/{id}/errors:
    parameters:
      - name: id
        in: path
        description: El ID de la tarea de rastreo
        required: true
        schema:
          type: string
          format: uuid
    get:
      tags:
        - Crawling
      summary: Obtener los errores de un trabajo de rastreo
      operationId: getCrawlErrors
      responses:
        '200':
          description: Respuesta satisfactoria
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CrawlErrorsResponseObj'
        '402':
          description: Se requiere pago
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Payment required to access this resource.
        '429':
          description: Demasiadas solicitudes
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: >-
                      Request rate limit exceeded. Please wait and try again
                      later.
        '500':
          description: Error del servidor
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: An unexpected error occurred on the server.
      security:
        - bearerAuth: []
components:
  schemas:
    CrawlErrorsResponseObj:
      type: object
      properties:
        errors:
          type: array
          description: Tareas de scraping con errores y detalles asociados
          items:
            type: object
            properties:
              id:
                type: string
              timestamp:
                type: string
                nullable: true
                description: Marca de tiempo ISO del error
              url:
                type: string
                description: URL extraída
              error:
                type: string
                description: Mensaje de error
        robotsBlocked:
          type: array
          description: >-
            Lista de URLs que se intentaron rastrear pero fueron bloqueadas por
            robots.txt
          items:
            type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````