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

# Accept

> Provision an inbound stablecoin collection address. Webhook fires on every confirmed deposit.



## OpenAPI

````yaml POST /v1/accept
openapi: 3.1.0
info:
  title: REM API
  description: >-
    Infrastructure for the new financial layer — stablecoin issuance and
    movement for institutions across Tempo, Solana, Base, and Arc.
  version: 1.0.0
servers:
  - url: https://api.rem.money
  - url: https://devnet.api.rem.money
security:
  - bearerAuth: []
paths:
  /v1/accept:
    post:
      tags:
        - Stablecoins
      summary: Accept (inbound)
      description: >-
        Provision an inbound stablecoin collection address. Webhook fires on
        every confirmed deposit.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
                - chain
                - currency
                - amount
              properties:
                chain:
                  type: string
                  enum:
                    - tempo
                    - solana
                    - base
                    - arc
                currency:
                  type: string
                  enum:
                    - USDC
                amount:
                  type: string
                  description: Expected amount, string for precision
                reference:
                  type: string
                  description: Your invoice or order ID
                counterparty:
                  type: string
                  description: Counterparty ID for KYC/KYT lookup
      responses:
        '201':
          description: Accept request created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AcceptResponse'
components:
  schemas:
    AcceptResponse:
      type: object
      properties:
        id:
          type: string
        walletId:
          type: string
        address:
          type: string
        amount:
          type: string
        reference:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````