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

# Get sender details

> Retrieve a sender's details by its sender_id.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/senders/{sender_id}
openapi: 3.1.0
info:
  title: EverOS API
  description: >-
    Enterprise-grade intelligent memory system for AI agents. Extracts,
    structures, and retrieves information from conversations.
  version: 1.0.0
  contact:
    name: EverOS Team
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
servers:
  - url: https://api.evermind.ai
    description: Production
security:
  - BearerAuth: []
tags:
  - name: Memories
    description: Memory ingestion, retrieval, search, and deletion
  - name: Groups
    description: Group resource CRUD operations
  - name: Senders
    description: Sender resource CRUD operations
  - name: Settings
    description: Global settings management
  - name: Tasks
    description: Async task status tracking
  - name: Storage
    description: Multimodal content storage (pre-signed upload)
paths:
  /api/v1/senders/{sender_id}:
    get:
      tags:
        - Senders
      summary: Get sender details
      description: Retrieve a sender's details by its sender_id.
      operationId: getSender
      parameters:
        - name: sender_id
          in: path
          required: true
          description: Sender identifier
          schema:
            type: string
          example: user_123
      responses:
        '200':
          description: Sender found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SenderApiResponse'
        '404':
          description: Sender not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - BearerAuth: []
      x-codeSamples:
        - lang: Python
          source: |-
            from everos_cloud import EverOS

            client = EverOS()
            senders = client.v1.senders

            response = senders.retrieve("<string>")
            print(response)
        - lang: cURL
          source: |-
            curl --request GET \
              --url 'https://api.evermind.ai/api/v1/senders/{sender_id}' \
              --header 'Authorization: Bearer <api_key>'
components:
  schemas:
    SenderApiResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/SenderResponse'
    ErrorResponse:
      type: object
      required:
        - code
        - message
        - timestamp
        - path
      properties:
        code:
          type: string
          description: Error code
          examples:
            - InvalidParameter
            - NotFound
            - InternalError
        message:
          type: string
          description: Error message
        request_id:
          type: string
          description: Request ID
          default: unknown
        timestamp:
          type: string
          description: ISO 8601 timestamp
        path:
          type: string
          description: Request path
    SenderResponse:
      type: object
      required:
        - sender_id
        - created_at
        - updated_at
      properties:
        sender_id:
          type: string
          description: Sender identifier
        name:
          description: Sender display name
          type:
            - string
            - 'null'
        created_at:
          type: string
          description: Creation time (ISO 8601)
        updated_at:
          type: string
          description: Last update time (ISO 8601)
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      x-default: Bearer <api_key>
      description: >-
        Bearer authentication header of the form Bearer 'api_key', obtain your
        API key from [everos.evermind.ai](https://everos.evermind.ai).

````