> ## Documentation Index
> Fetch the complete documentation index at: https://cobo.com/products/agentic-wallet/manual/llms.txt
> Use this file to discover all available pages before exploring further.

# List recent addresses for current user

> This operation retrieves the most recently used recipient addresses across all transfers initiated by the current principal (across all their wallets). Results are ordered from most to least recent.



## OpenAPI

````yaml get /api/v1/wallets/recent-addresses
openapi: 3.1.0
info:
  title: Cobo Agentic Wallet Service
  description: Unified wallet engine for human and agent principals
  version: 1.3.0
servers: []
security: []
paths:
  /api/v1/wallets/recent-addresses:
    get:
      tags:
        - Transactions
      summary: List recent addresses for current user
      description: >-
        This operation retrieves the most recently used recipient addresses
        across all transfers initiated by the current principal (across all
        their wallets). Results are ordered from most to least recent.
      operationId: list_recent_addresses_by_user
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 50
            minimum: 1
            description: 'The maximum number of addresses to return. Range: [1, 50].'
            default: 10
            title: Limit
          description: 'The maximum number of addresses to return. Range: [1, 50].'
        - name: token_id
          in: query
          required: false
          schema:
            description: >-
              Filter records by token ID (for example, `SETH`, `SETH_USDC`). Use
              the Cobo token ID format. If omitted, all tokens are returned.
            title: Token Id
            type: string
            nullable: true
          description: >-
            Filter records by token ID (for example, `SETH`, `SETH_USDC`). Use
            the Cobo token ID format. If omitted, all tokens are returned.
        - name: X-API-Key
          in: header
          required: false
          schema:
            title: X-Api-Key
            type: string
            nullable: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StandardResponse_list_RecentAddressRead__'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WrappedValidationError'
components:
  schemas:
    StandardResponse_list_RecentAddressRead__:
      properties:
        success:
          type: boolean
          title: Success
          default: true
        result:
          items:
            $ref: '#/components/schemas/RecentAddressRead'
          type: array
          title: Result
        suggestion:
          type: string
          title: Suggestion
          default: ''
        message:
          type: string
          title: Message
          default: ''
        meta:
          $ref: '#/components/schemas/PaginationMeta'
          nullable: true
      type: object
      required:
        - result
      title: StandardResponse[list[RecentAddressRead]]
    WrappedValidationError:
      title: WrappedValidationError
      type: object
      required:
        - success
        - error
      properties:
        success:
          type: boolean
          const: false
          default: false
          title: Success
        error:
          type: object
          title: Error
          required:
            - detail
          properties:
            detail:
              type: array
              title: Detail
              items:
                $ref: '#/components/schemas/ValidationError'
    RecentAddressRead:
      properties:
        address:
          type: string
          title: Address
          description: The recipient on-chain address.
        chain_id:
          type: string
          title: Chain Id
          description: The chain ID associated with this address.
          default: ''
        token_id:
          type: string
          title: Token Id
          description: >-
            The token ID associated with the most recent transfer to this
            address.
          default: ''
      type: object
      required:
        - address
      title: RecentAddressRead
      description: Recent recipient address from transfer history.
    PaginationMeta:
      properties:
        total:
          title: Total
          type: integer
          nullable: true
        offset:
          title: Offset
          type: integer
          nullable: true
        limit:
          title: Limit
          type: integer
          nullable: true
        has_more:
          title: Has More
          type: boolean
          nullable: true
        after:
          title: After
          type: string
          nullable: true
        before:
          title: Before
          type: string
          nullable: true
      type: object
      title: PaginationMeta
      description: |-
        Pagination metadata for list responses.

        Supports both legacy offset-based and cursor-based pagination.
        Cursor fields (``has_more``, ``after``, ``before``) are populated for
        cursor-paginated endpoints.  Legacy fields (``offset``, ``limit``) are
        populated when the caller uses the deprecated ``offset`` parameter.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````