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

# Get Account

> Retrieve detailed account information by ID. Returns the account with associated profile info, emails, and wallet addresses.



## OpenAPI

````yaml api-reference/openapi/accounts.json GET /api/accounts/{id}
openapi: 3.1.0
info:
  title: Recoup API - Accounts
  description: >-
    API documentation for the Recoup platform - an AI agent platform for the
    music industry
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.recoupable.dev
security: []
paths:
  /api/accounts/{id}:
    get:
      description: >-
        Retrieve detailed account information by ID. Returns the account with
        associated profile info, emails, and wallet addresses.
      parameters:
        - name: id
          in: path
          description: The unique identifier (UUID) of the account
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Account retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetAccountResponse'
        '404':
          description: Account not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountErrorResponse'
components:
  schemas:
    GetAccountResponse:
      type: object
      required:
        - status
        - account
      properties:
        status:
          type: string
          enum:
            - success
          description: Status of the request
        account:
          $ref: '#/components/schemas/Account'
          description: The account details
    AccountErrorResponse:
      type: object
      required:
        - status
        - message
      properties:
        status:
          type: string
          enum:
            - error
          description: Status of the request
        message:
          type: string
          description: Error message describing what went wrong
    Account:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier for the account
        name:
          type: string
          description: Account display name
        image:
          type: string
          nullable: true
          description: Profile image URL
        instruction:
          type: string
          nullable: true
          description: Custom AI instructions for this account
        knowledges:
          type: array
          nullable: true
          items:
            $ref: '#/components/schemas/Knowledge'
          description: Knowledge base files attached to this account
        email:
          type: string
          nullable: true
          description: Primary email address
        wallet_address:
          type: string
          nullable: true
          description: Connected wallet address
    Knowledge:
      type: object
      properties:
        url:
          type: string
          description: URL to the knowledge file
        name:
          type: string
          description: Name of the knowledge file
        type:
          type: string
          description: MIME type of the file

````