> ## Documentation Index
> Fetch the complete documentation index at: https://requestnetwork-feat-tron-sponsored-tx-doc.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Create payee destination

> Create a payee destination with EIP-712 signature verification



## OpenAPI

````yaml /api-reference/openapi.v2.json post /v2/payee-destination
openapi: 3.0.0
info:
  title: Request Network API
  description: API for easily creating and paying Requests with Request Network.
  version: 0.13.0
  contact: {}
servers:
  - url: https://api.request.network
    description: Production server
  - url: https://api.stage.request.network
    description: Staging server
  - url: http://127.0.0.1:8080
    description: Local development server
security: []
tags:
  - name: V2/Request
    description: Core payment request operations (V2)
  - name: V2/Payments
    description: Payment search and management operations (V2)
  - name: V2/Payouts
    description: Pay a request without creating one first (V2)
  - name: V2/Payer
    description: Crypto-to-fiat payer management operations (V2)
  - name: V2/Currencies
    description: Currency operations (V2)
  - name: V2/Client IDs
    description: Client ID management (V2)
  - name: V2/Payee Destination
    description: Payee destination management (V2)
externalDocs:
  description: Request Network Docs
  url: https://docs.request.network/request-network-api
paths:
  /v2/payee-destination:
    post:
      tags:
        - V2/Payee Destination
      summary: Create payee destination
      description: Create a payee destination with EIP-712 signature verification
      operationId: PayeeDestinationController_createPayeeDestination_v2
      parameters:
        - name: x-client-id
          in: header
          description: Client ID for frontend authentication
          required: true
          schema:
            type: string
        - name: Origin
          in: header
          description: Origin header (automatically set by browser)
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                signature:
                  type: string
                  pattern: ^0x[a-fA-F0-9]{130}$
                  description: The EIP-712 signature from the payee
                nonce:
                  type: string
                  minLength: 1
                  description: The signing session nonce from /signing-data endpoint
              required:
                - signature
                - nonce
      responses:
        '201':
          description: Payee destination created successfully
        '429':
          description: Too Many Requests

````