> ## 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.

# Request faucet deposit

> This operation sends testnet tokens to the specified wallet address. Provide `address` (an on-chain address registered to one of your wallets) and `token_id` (a token available from the faucet). Call the List faucet tokens operation to see available tokens.

<Note>Daily deposit limits apply per token. The operation returns HTTP 429 if the daily limit has been reached.</Note>



## OpenAPI

````yaml post /api/v1/faucet/deposit
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/faucet/deposit:
    post:
      tags:
        - Faucet
      summary: Request faucet deposit
      description: >-
        This operation sends testnet tokens to the specified wallet address.
        Provide `address` (an on-chain address registered to one of your
        wallets) and `token_id` (a token available from the faucet). Call the
        List faucet tokens operation to see available tokens.


        <Note>Daily deposit limits apply per token. The operation returns HTTP
        429 if the daily limit has been reached.</Note>
      operationId: deposit
      parameters:
        - name: X-API-Key
          in: header
          required: false
          schema:
            title: X-Api-Key
            type: string
            nullable: true
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FaucetDepositRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StandardResponse_FaucetDepositResult_'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WrappedValidationError'
components:
  schemas:
    FaucetDepositRequest:
      properties:
        address:
          type: string
          title: Address
          description: Destination address to receive test tokens
        token_id:
          type: string
          title: Token Id
          description: Token identifier, e.g. SETH_USDC
      type: object
      required:
        - address
        - token_id
      title: FaucetDepositRequest
    StandardResponse_FaucetDepositResult_:
      properties:
        success:
          type: boolean
          title: Success
          default: true
        result:
          $ref: '#/components/schemas/FaucetDepositResult'
        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[FaucetDepositResult]
    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'
    FaucetDepositResult:
      properties:
        address:
          type: string
          title: Address
          description: The destination address that received the testnet tokens.
        token_id:
          type: string
          title: Token Id
          description: The token ID that was sent (for example, `SETH_USDC`).
        amount:
          type: string
          title: Amount
          description: The amount of tokens sent, as a decimal string.
        result:
          title: Result
          description: The WaaS transfer result details.
          additionalProperties: true
          type: object
          nullable: true
      type: object
      required:
        - address
        - token_id
        - amount
      title: FaucetDepositResult
    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

````