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

# Obtener Respuesta

> Este endpoint recupera una respuesta previamente completada por su ID.



## OpenAPI

````yaml es/openapi/answers.json GET /v1/answers/{answer_id}
openapi: 3.0.3
info:
  title: API de Respuestas
  version: 1.0.0
servers:
  - url: https://api.olostep.com
security: []
paths:
  /v1/answers/{answer_id}:
    get:
      summary: Obtener Respuesta
      description: Este endpoint recupera una respuesta previamente completada por su ID.
      parameters:
        - name: answer_id
          in: path
          required: true
          description: Identificador único para la respuesta a recuperar.
          schema:
            type: string
      responses:
        '200':
          description: Respuesta exitosa con el objeto de respuesta.
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  object:
                    type: string
                  created:
                    type: integer
                  metadata:
                    type: object
                  task:
                    type: string
                  result:
                    type: object
                    properties:
                      json_content:
                        type: string
                      json_hosted_url:
                        type: string
                      sources:
                        type: array
                        items:
                          type: string
        '402':
          description: Clave API Inválida
        '404':
          description: Respuesta No Encontrada
        '500':
          description: Error Interno del Servidor
      security:
        - Authorization: []
components:
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: >-
        Encabezado de autenticación Bearer del formato Bearer <token>, donde
        <token> es tu token de autenticación.

````