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

# Ottieni Risposta

> Questo endpoint recupera una risposta precedentemente completata tramite il suo ID.



## OpenAPI

````yaml it/openapi/answers.json GET /v1/answers/{answer_id}
openapi: 3.0.3
info:
  title: API Risposte
  version: 1.0.0
servers:
  - url: https://api.olostep.com
security: []
paths:
  /v1/answers/{answer_id}:
    get:
      summary: Ottieni Risposta
      description: >-
        Questo endpoint recupera una risposta precedentemente completata tramite
        il suo ID.
      parameters:
        - name: answer_id
          in: path
          required: true
          description: Identificatore univoco per la risposta da recuperare.
          schema:
            type: string
      responses:
        '200':
          description: Risposta riuscita con l'oggetto risposta.
          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: Chiave API Non Valida
        '404':
          description: Risposta Non Trovata
        '500':
          description: Errore Interno del Server
      security:
        - Authorization: []
components:
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: >-
        Intestazione di autenticazione Bearer del tipo Bearer <token>, dove
        <token> è il tuo token di autenticazione.

````