API Documentation
API Documentation

Retrieve an asset

Brave New Coin uses conventional HTTP response codes to indicate the success or failure of an API request. In general: Codes in the 2xx range indicate success. Codes in the 4xx range indicate an error that failed given the information provided (e.g. A required parameter was missing). Codes in the 5xx range indicate an error with Brave New Coin's servers.

Some 4xx errors that could be handled programmatically include an error code that briefly explains the error reported.


Request Samples:

Production API Server: https://api.bravenewcoin.com/{basePath}/asset/{id}

Curl

curl https://api.bravenewcoin.com/v3/asset/74182afb-c7ea-4856-a65d-a03ab5f72635 -H 'Authorization: Bearer test_SiHrnL5NKsea0G2W4LHd' -G

Response samples


200

Content Type

application/json

{


"content": [
{
"id": "string",
"name": "string",
"symbol": "string",
"status": "ACTIVE",
"type": "FIAT",
"url": "string"
}
]
}