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

# Get Developer Daily Summary

> Get one stored daily recap by ID.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/dev/user/daily-summaries/{summary_id}
openapi: 3.1.0
info:
  contact:
    name: Omi
    url: https://omi.me/
  description: >-
    Programmatic access to your Omi data - memories, conversations, action
    items, goals, folders, and API keys. Build custom integrations, analytics
    dashboards, and automation workflows.
  license:
    name: MIT
    url: https://github.com/BasedHardware/omi/blob/main/LICENSE
  title: Omi Developer API
  version: 1.0.0
servers:
  - description: Production
    url: https://api.omi.me
security: []
tags:
  - description: Read and write user memories - timeless facts, preferences, and insights.
    name: Memories
  - description: Create and retrieve conversation transcripts with AI-generated summaries.
    name: Conversations
  - description: Retrieve user-defined folders for organizing conversations.
    name: Folders
  - description: Manage tasks and to-dos extracted from conversations or created manually.
    name: Action Items
  - description: Manage user goals and progress history.
    name: Goals
  - description: Create, list, and revoke developer API keys.
    name: API Keys
paths:
  /v1/dev/user/daily-summaries/{summary_id}:
    get:
      tags:
        - Daily Summaries
      summary: Get Developer Daily Summary
      description: Get one stored daily recap by ID.
      operationId: getDailySummary
      parameters:
        - in: path
          name: summary_id
          required: true
          schema:
            title: Summary Id
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DailySummaryResponse'
          description: Successful Response
        '401':
          $ref: '#/components/responses/Error401'
        '403':
          $ref: '#/components/responses/Error403'
        '404':
          $ref: '#/components/responses/Error404'
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - developerApiKey: []
components:
  schemas:
    DailySummaryResponse:
      additionalProperties: true
      properties:
        action_items:
          anyOf:
            - items:
                $ref: '#/components/schemas/DailySummaryActionItem'
              type: array
            - type: 'null'
          title: Action Items
        created_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Created At
        date:
          anyOf:
            - type: string
            - type: 'null'
          title: Date
        day_emoji:
          anyOf:
            - type: string
            - type: 'null'
          title: Day Emoji
        decisions_made:
          anyOf:
            - items:
                $ref: '#/components/schemas/DailySummaryDecisionMade'
              type: array
            - type: 'null'
          title: Decisions Made
        headline:
          anyOf:
            - type: string
            - type: 'null'
          title: Headline
        highlights:
          anyOf:
            - items:
                $ref: '#/components/schemas/DailySummaryTopicHighlight'
              type: array
            - type: 'null'
          title: Highlights
        id:
          anyOf:
            - type: string
            - type: 'null'
          title: Id
        knowledge_nuggets:
          anyOf:
            - items:
                $ref: '#/components/schemas/DailySummaryKnowledgeNugget'
              type: array
            - type: 'null'
          title: Knowledge Nuggets
        locations:
          anyOf:
            - items:
                $ref: '#/components/schemas/DailySummaryLocationPin'
              type: array
            - type: 'null'
          title: Locations
        memories_learned:
          items:
            $ref: '#/components/schemas/LearnedMemoryRef'
          title: Memories Learned
          type: array
        overview:
          anyOf:
            - type: string
            - type: 'null'
          title: Overview
        stats:
          anyOf:
            - $ref: '#/components/schemas/DailySummaryDayStats'
            - type: 'null'
        unresolved_questions:
          anyOf:
            - items:
                $ref: '#/components/schemas/DailySummaryUnresolvedQuestion'
              type: array
            - type: 'null'
          title: Unresolved Questions
      title: DailySummaryResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    DailySummaryActionItem:
      properties:
        completed:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Completed
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        priority:
          anyOf:
            - type: string
            - type: 'null'
          title: Priority
        source_conversation_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Source Conversation Id
      title: DailySummaryActionItem
      type: object
    DailySummaryDecisionMade:
      properties:
        conversation_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Conversation Id
        decision:
          anyOf:
            - type: string
            - type: 'null'
          title: Decision
      title: DailySummaryDecisionMade
      type: object
    DailySummaryTopicHighlight:
      properties:
        conversation_ids:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Conversation Ids
        emoji:
          anyOf:
            - type: string
            - type: 'null'
          title: Emoji
        summary:
          anyOf:
            - type: string
            - type: 'null'
          title: Summary
        topic:
          anyOf:
            - type: string
            - type: 'null'
          title: Topic
      title: DailySummaryTopicHighlight
      type: object
    DailySummaryKnowledgeNugget:
      properties:
        conversation_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Conversation Id
        insight:
          anyOf:
            - type: string
            - type: 'null'
          title: Insight
      title: DailySummaryKnowledgeNugget
      type: object
    DailySummaryLocationPin:
      properties:
        address:
          anyOf:
            - type: string
            - type: 'null'
          title: Address
        conversation_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Conversation Id
        latitude:
          anyOf:
            - type: number
            - type: 'null'
          title: Latitude
        longitude:
          anyOf:
            - type: number
            - type: 'null'
          title: Longitude
        time:
          anyOf:
            - type: string
            - type: 'null'
          title: Time
      title: DailySummaryLocationPin
      type: object
    LearnedMemoryRef:
      description: >-
        One memory the day actually produced, addressed by its canonical id.


        This is the identity `knowledge_nuggets` never had: a client can render
        a

        native review card and vote or correct through the existing memory

        endpoints. Review state (`user_review`, `edited`) is deliberately absent
        —

        clients read it live from the memory so a vote on one device shows on
        the

        other.
      properties:
        captured_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Captured At
        category:
          default: ''
          title: Category
          type: string
        content:
          title: Content
          type: string
        memory_id:
          title: Memory Id
          type: string
      required:
        - memory_id
        - content
      title: LearnedMemoryRef
      type: object
    DailySummaryDayStats:
      properties:
        action_items_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Action Items Count
        action_items_created:
          anyOf:
            - type: integer
            - type: 'null'
          title: Action Items Created
        memories_created:
          anyOf:
            - type: integer
            - type: 'null'
          title: Memories Created
        proactive_moments:
          anyOf:
            - type: integer
            - type: 'null'
          title: Proactive Moments
        total_conversations:
          anyOf:
            - type: integer
            - type: 'null'
          title: Total Conversations
        total_duration_minutes:
          anyOf:
            - type: integer
            - type: 'null'
          title: Total Duration Minutes
        watching_minutes:
          anyOf:
            - type: integer
            - type: 'null'
          title: Watching Minutes
      title: DailySummaryDayStats
      type: object
    DailySummaryUnresolvedQuestion:
      properties:
        conversation_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Conversation Id
        question:
          anyOf:
            - type: string
            - type: 'null'
          title: Question
      title: DailySummaryUnresolvedQuestion
      type: object
    ErrorResponse:
      properties:
        detail:
          anyOf:
            - type: string
            - type: array
            - type: object
          description: Error detail returned by the API.
      required:
        - detail
      title: ErrorResponse
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  responses:
    Error401:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
      description: Missing or invalid authentication credentials.
    Error403:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
      description: Authenticated, but the token does not grant the required scope.
    Error404:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
      description: Requested resource was not found.
  securitySchemes:
    developerApiKey:
      bearerFormat: Omi Developer API key
      description: 'Send `Authorization: Bearer <omi_developer_api_key>`.'
      scheme: bearer
      type: http

````