Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.dollarpe.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Customer creation updates

New
  • Customer Create now accepts two new optional fields:
    • non_residence_status - Set to true for non-resident customers.
    • residence_alpha_3_country_code - Country of residence for non-resident customers.

KYC Add API enhancements

Breaking
  • Add KYC updated: income_range and profession are now inside a new additional_info object.
{
  "additional_info": {
    "income_range": "<10L",
    "profession": "Software Engineer"
  }
}

New KYC configuration endpoint

New
  • KYC Configuration endpoint is now available. It returns:
    • supported_document_types - Accepted document types for Add KYC.
    • additional_info_required - Required fields (income_range, profession) with validation rules.
{
  "status": true,
  "message": "Success",
  "data": {
    "supported_document_types": ["AADHAAR", "PASSPORT", "VOTER_ID", "DRIVING_LICENSE"],
    "additional_info_required": {
      "options": ["income_range", "profession"],
      "rules": {
        "type": "allOf",
        "min_required": 2
      },
      "income_range": {
        "type": "string",
        "required": true
      },
      "profession": {
        "type": "string",
        "required": true
      }
    }
  }
}

Payout / payin configuration updates

Breaking Previous structure:
{
  "data": {
    "supported_fiats": ["inr"],
    "supported_assets": ["usdt", "usdc"],
    "coin_limits": {
      "{fiat}": {
        "{asset}": {
          "imps": { "min": 30, "max": 5850 },
          "upi": { "min": 30, "max": 5850 }
        }
      }
    }
  }
}
New structure:
{
  "data": {
    "inr": {
      "supported_assets": ["usdt", "usdc"],
      "supported_networks": {
        "usdt": ["polygon", "eth", "bsc", "sepolia", "solana", "tron", "arbitrum"],
        "usdc": ["polygon", "eth", "bsc", "sepolia", "solana", "tron", "arbitrum"]
      },
      "coin_limits": {
        "usdt": {
          "imps": { "min": 28, "max": 5563 },
          "upi": { "min": 28, "max": 1113 }
        },
        "usdc": {
          "imps": { "min": 28, "max": 5563 },
          "upi": { "min": 28, "max": 1113 }
        }
      }
    }
  }
}