List networks
Core API
- Concepts
- Authentication
- Countries
- Users
- KYC
- Capabilities
- Terms of Service
- Files
- Assets
- Accounts
- External Accounts
- Transactions
- Webhooks
Widgets API
- Payment
List networks
List networks supported by the platform.
GET
/
core
/
networks
curl --request GET \
--url https://api.enterprise.sandbox.uphold.com/core/networks \
--header 'Authorization: Bearer <token>'
{
"networks": [
{
"code": "bitcoin",
"type": "crypto",
"name": "Bitcoin",
"logo": "https://cdn.uphold.com/assets/BTC.svg",
"exampleAddress": "tb1qgu0gacn9pqpnvlqclvdwyz4gfgxz8pptfz4emt",
"explorer": {
"addressUrl": "https://mempool.space/testnet/tx/<hash>",
"txUrl": "https://mempool.space/testnet/address/<hash>"
}
},
{
"code": "visa",
"type": "card",
"name": "VISA",
"logo": "https://cdn.uphold.com/assets/VISA.svg"
},
{
"code": "mastercard",
"type": "card",
"name": "Mastercard",
"logo": "https://cdn.uphold.com/assets/Mastercard.svg"
}
]
}
Authorizations
OAuth 2.0 authentication.
Response
200 - application/json
Networks retrieved.
The type of the network.
Available options:
crypto
The unique code of the network.
The name of the network.
The logo of the network.
An example address for the network.
The type of reference used for the network, if any.
Available options:
destination-tag
, memo
curl --request GET \
--url https://api.enterprise.sandbox.uphold.com/core/networks \
--header 'Authorization: Bearer <token>'
{
"networks": [
{
"code": "bitcoin",
"type": "crypto",
"name": "Bitcoin",
"logo": "https://cdn.uphold.com/assets/BTC.svg",
"exampleAddress": "tb1qgu0gacn9pqpnvlqclvdwyz4gfgxz8pptfz4emt",
"explorer": {
"addressUrl": "https://mempool.space/testnet/tx/<hash>",
"txUrl": "https://mempool.space/testnet/address/<hash>"
}
},
{
"code": "visa",
"type": "card",
"name": "VISA",
"logo": "https://cdn.uphold.com/assets/VISA.svg"
},
{
"code": "mastercard",
"type": "card",
"name": "Mastercard",
"logo": "https://cdn.uphold.com/assets/Mastercard.svg"
}
]
}