Skip to main content
GET
/
assets
/
{asset_id}
/
logo
Get the logo URL for an asset
curl --request GET \
  --url https://api.bluum.finance/v1/assets/{asset_id}/logo \
  --header 'Authorization: Basic <encoded-value>'
{
  "symbol": "AAPL",
  "logo_url": "https://example.com/logos/AAPL.png"
}

Authorizations

Authorization
string
header
required

HTTP Basic Authentication using the API Key as username and API Secret as password.

Path Parameters

asset_id
string<uuid>
required
Example:

"6c5b2403-24a9-4b55-a3dd-5cb1e4b50da6"

Response

Logo URL data

symbol
string
Example:

"AAPL"

logo_url
string<uri>

URL to the asset logo

Example:

"https://example.com/logos/AAPL.png"