> ## Documentation Index
> Fetch the complete documentation index at: https://docs.akumi.eu/llms.txt
> Use this file to discover all available pages before exploring further.

# Remember a fact

> Extraction runs in the background, so the response returns before the fact
becomes queryable.



## OpenAPI

````yaml /api-reference/openapi.json post /recall/facts
openapi: 3.1.0
info:
  title: Akumi
  version: 0.0.1
servers:
  - url: https://api.akumi.eu/v1
    description: Production
security:
  - http: []
tags:
  - name: Audit log
  - name: Chat completions
  - name: Embeddings
  - name: Models
  - name: Recall
  - name: Scores
paths:
  /recall/facts:
    post:
      tags:
        - Recall
      summary: Remember a fact
      description: >-
        Extraction runs in the background, so the response returns before the
        fact

        becomes queryable.
      operationId: v1.recall.facts.store
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RememberFactRequest'
      responses:
        '202':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    const: accepted
                required:
                  - status
        '401':
          $ref: '#/components/responses/AuthenticationException'
        '422':
          $ref: '#/components/responses/ValidationException'
components:
  schemas:
    RememberFactRequest:
      type: object
      description: >-
        Validates a POST /v1/recall/facts body: the fact content and the
        end-user it

        belongs to. The ability gate lives in the route middleware.
      properties:
        content:
          type: string
          maxLength: 8000
        user_ref:
          type: string
          maxLength: 255
      required:
        - content
        - user_ref
      title: RememberFactRequest
  responses:
    AuthenticationException:
      description: Unauthenticated
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Error overview.
            required:
              - message
    ValidationException:
      description: Validation error
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Errors overview.
              errors:
                type: object
                description: A detailed description of each field that failed validation.
                additionalProperties:
                  type: array
                  items:
                    type: string
            required:
              - message
              - errors
  securitySchemes:
    http:
      type: http
      scheme: bearer

````