For the complete documentation index, see llms.txt. This page is also available as Markdown.

Supported Networks

This endpoint allows you to retrieve a list of blockchain networks supported by OxaPay for cryptocurrency transactions.

Get supported networks

get
Responses
200

Successful operation

application/json
messagestringOptional

A message containing additional information about the result of the request.

statusintegerOptional

The status of the request response. Typically provided as a numeric code.

versionstringOptional

The version of the API being used.

get/common/networks
import requests

url = 'https://api.oxapay.com/v1/common/networks'

response = requests.get(url)
result = response.json()
print(result)
200

Successful operation

{
  "data": {
    "list": [
      "Bitcoin Network",
      "Ethereum Network",
      "Tron Network",
      "Binance Smart Chain",
      "Dogecoin Network",
      "Solana Network",
      "Polygon Network",
      "Litecoin Network",
      "DigiByte Network",
      "Monero Network",
      "TON Network",
      "Bitcoin Cash Network",
      "Base"
    ]
  },
  "message": "Operation completed successfully!",
  "error": {},
  "status": 200,
  "version": "1.0.0"
}

Last updated