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

# Obtenir une réponse

> Ce point de terminaison récupère une réponse précédemment complétée par son ID.



## OpenAPI

````yaml fr/openapi/answers.json GET /v1/answers/{answer_id}
openapi: 3.0.3
info:
  title: API des Réponses
  version: 1.0.0
servers:
  - url: https://api.olostep.com
security: []
paths:
  /v1/answers/{answer_id}:
    get:
      summary: Obtenir une Réponse
      description: >-
        Ce point de terminaison récupère une réponse précédemment complétée par
        son ID.
      parameters:
        - name: answer_id
          in: path
          required: true
          description: Identifiant unique de la réponse à récupérer.
          schema:
            type: string
      responses:
        '200':
          description: Réponse réussie avec l'objet réponse.
          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: Clé API Invalide
        '404':
          description: Réponse Non Trouvée
        '500':
          description: Erreur Interne du Serveur
      security:
        - Authorization: []
components:
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: >-
        En-tête d'authentification Bearer sous la forme Bearer <token>, où
        <token> est ton jeton d'authentification.

````