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

# Antwoord Ophalen

> Deze endpoint haalt een eerder voltooid antwoord op via zijn ID.



## OpenAPI

````yaml nl/openapi/answers.json GET /v1/answers/{answer_id}
openapi: 3.0.3
info:
  title: Antwoorden API
  version: 1.0.0
servers:
  - url: https://api.olostep.com
security: []
paths:
  /v1/answers/{answer_id}:
    get:
      summary: Antwoord Ophalen
      description: Deze endpoint haalt een eerder voltooid antwoord op via zijn ID.
      parameters:
        - name: answer_id
          in: path
          required: true
          description: Unieke identificatie voor het antwoord dat opgehaald moet worden.
          schema:
            type: string
      responses:
        '200':
          description: Succesvolle respons met het antwoordobject.
          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: Ongeldige API Sleutel
        '404':
          description: Antwoord Niet Gevonden
        '500':
          description: Interne Serverfout
      security:
        - Authorization: []
components:
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: >-
        Bearer authenticatie header in de vorm Bearer <token>, waarbij <token>
        jouw auth token is.

````