Core API
- Concepts
- Authentication
- Countries
- Users
- KYC
- Capabilities
- Terms of Service
- Files
- Assets
- Accounts
- External Accounts
- Transactions
- Webhooks
Widgets API
- Payment
Get network
Retrieve a network by code.
GET
/
core
/
networks
/
{network}
curl --request GET \
--url https://api.enterprise.sandbox.uphold.com/core/networks/{network} \
--header 'Authorization: Bearer <token>'
{
"network": {
"code": "bitcoin",
"type": "crypto",
"name": "Bitcoin",
"exampleAddress": "tb1qgu0gacn9pqpnvlqclvdwyz4gfgxz8pptfz4emt",
"explorer": {
"addressUrl": "https://mempool.space/testnet/tx/<hash>",
"txUrl": "https://mempool.space/testnet/address/<hash>"
}
}
}
Authorizations
OAuth 2.0 authentication.
Path Parameters
The network code.
Minimum length:
1
Response
200
application/json
Network 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/{network} \
--header 'Authorization: Bearer <token>'
{
"network": {
"code": "bitcoin",
"type": "crypto",
"name": "Bitcoin",
"exampleAddress": "tb1qgu0gacn9pqpnvlqclvdwyz4gfgxz8pptfz4emt",
"explorer": {
"addressUrl": "https://mempool.space/testnet/tx/<hash>",
"txUrl": "https://mempool.space/testnet/address/<hash>"
}
}
}