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

# Get sender account details

> **Get detailed information about a specific sender account**



## OpenAPI

````yaml /public_openapi.json get /api/public/v1/sender-accounts/{inbox_id}
openapi: 3.0.3
info:
  title: ColdSend Public API
  description: >-
    Programmatic access to ColdSend for managing cold email campaigns and sender
    accounts.
  version: 1.0.0
  contact:
    name: ColdSend Support
    email: support@coldsend.pro
    url: https://coldsend.pro
servers:
  - url: https://api.coldsend.pro
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /api/public/v1/sender-accounts/{inbox_id}:
    get:
      tags:
        - Sender Accounts
      summary: Get sender account details
      description: '**Get detailed information about a specific sender account**'
      operationId: get_sender_account_api_public_v1_sender_accounts__inbox_id__get
      parameters:
        - name: inbox_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            description: Sender account ID
            title: Inbox Id
          description: Sender account ID
      responses:
        '200':
          description: Sender account retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SenderAccountResponse'
        '401':
          description: Missing or invalid API key
        '403':
          description: Insufficient permissions - requires 'sender_accounts:read' scope
        '404':
          description: Sender account not found
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SenderAccountResponse:
      properties:
        inbox_id:
          type: string
          format: uuid
          title: Inbox Id
          description: Inbox ID
        email_address:
          type: string
          title: Email Address
          description: Email address
        display_name:
          type: string
          title: Display Name
          description: Display name
        inbox_type:
          type: string
          title: Inbox Type
          description: Inbox type
        overall_status:
          type: string
          title: Overall Status
          description: Overall status
        daily_limit:
          type: integer
          title: Daily Limit
          description: Daily sending limit
        emails_sent_today:
          type: integer
          title: Emails Sent Today
          description: Emails sent today
        health_score:
          type: number
          title: Health Score
          description: Health score (0-100)
        domain:
          $ref: '#/components/schemas/SenderAccountDomainInfo'
          nullable: true
          description: Domain info (for ColdSend inboxes)
        smtp_host:
          type: string
          nullable: true
          title: Smtp Host
          description: SMTP host (for workspace inboxes)
        smtp_port:
          type: integer
          nullable: true
          title: Smtp Port
          description: SMTP port
        smtp_use_tls:
          type: boolean
          nullable: true
          title: Smtp Use Tls
          description: Whether TLS is enabled
        imap_host:
          type: string
          nullable: true
          title: Imap Host
          description: IMAP host (for workspace inboxes)
        imap_port:
          type: integer
          nullable: true
          title: Imap Port
          description: IMAP port
        imap_use_ssl:
          type: boolean
          nullable: true
          title: Imap Use Ssl
          description: Whether SSL is enabled
        oauth_provider:
          type: string
          nullable: true
          title: Oauth Provider
          description: OAuth provider if connected via OAuth
        oauth_config_id:
          type: string
          format: uuid
          nullable: true
          title: Oauth Config Id
          description: OAuth configuration ID if using private infrastructure
        created_at:
          type: string
          title: Created At
          description: Creation timestamp
        updated_at:
          type: string
          nullable: true
          title: Updated At
          description: Last update timestamp
      type: object
      required:
        - inbox_id
        - email_address
        - display_name
        - inbox_type
        - overall_status
        - daily_limit
        - emails_sent_today
        - health_score
        - created_at
      title: SenderAccountResponse
      description: Detailed sender account response.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    SenderAccountDomainInfo:
      properties:
        domain_id:
          type: string
          format: uuid
          nullable: true
          title: Domain Id
          description: Domain ID
        domain_name:
          type: string
          nullable: true
          title: Domain Name
          description: Domain name
      type: object
      title: SenderAccountDomainInfo
      description: Domain information in sender account details.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key with format cs_live_xxx

````