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 response is of type object
.
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"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.