Skip to main content
GET
/
v1
/
logos
/
search
Search Company Logos
curl --request GET \
  --url https://api.aries.com/v1/logos/search \
  --header 'Authorization: Bearer <token>'
{
  "ok": true,
  "data": [
    {
      "id": "efc3943a-ddac-4f59-a2cc-47a67583068b",
      "searchKey": "NASDAQ:TSLA",
      "createdAt": "2022-05-18T05:19:45.008547Z",
      "updatedAt": "2025-02-05T09:43:14.303261Z",
      "files": {
        "logoLight": "https://api.aries.com/api/v1/logos/image/api/v2/logos/file/image/1318605/logo_light__6895726d0ff148e46c238f91d033e72a.png?x-bz-cred=sb~7nRcPgi4qeJIyQFeeqQwwzQ9oIGzG3im3lzP69O9AaadrloJyrPceYU7vkYcj42dLlYMa00mErg1WDMBdfkPTm9ck4GIgibYFyameIVXguRJja5C-m-9rImZvUA5xKDPMxw0XUbIhJ0%3D&x-bz-exp=1766661741&x-bz-security-isin=&x-bz-security-symbol=NASDAQ%3ATSLA&x-bz-signature=f45530843c3672e927e8208a531453471605c079be21376089b475c83afcbb39",
        "logoDark": "https://api.aries.com/api/v1/logos/image/api/v2/logos/file/image/1318605/logo_dark__53646042d4c8b507c7eddb70110ee334.png?x-bz-cred=sb~7nRcPgi4qeJIyQFeeqQwwzQ9oIGzG3im3lzP69O9AaadrloJyrPceYU7vkYcj42dLlYMa00mErg1WDMBdfkPTm9ck4GIgibYFyameIVXguRJja5C-m-9rImZvUA5xKDPMxw0XUbIhJ0%3D&x-bz-exp=1766661741&x-bz-security-isin=&x-bz-security-symbol=NASDAQ%3ATSLA&x-bz-signature=d303f6c3b54333d35b03cd6cac0ced99f677dc71593fd5ab9c1b5e864c9e8ae2",
        "markLight": "https://api.aries.com/api/v1/logos/image/api/v2/logos/file/image/1318605/mark_light__9f4c5c14204006285b479f83bf2c6daf.png?x-bz-cred=sb~7nRcPgi4qeJIyQFeeqQwwzQ9oIGzG3im3lzP69O9AaadrloJyrPceYU7vkYcj42dLlYMa00mErg1WDMBdfkPTm9ck4GIgibYFyameIVXguRJja5C-m-9rImZvUA5xKDPMxw0XUbIhJ0%3D&x-bz-exp=1766661741&x-bz-security-isin=&x-bz-security-symbol=NASDAQ%3ATSLA&x-bz-signature=0699a7851f90ce879177633853bd9ba194d68840017dffbe5d0171b8c2c7acd0",
        "markDark": "https://api.aries.com/api/v1/logos/image/api/v2/logos/file/image/1318605/mark_dark__842b58b3522329f19bc66ab6b5f3ce2a.png?x-bz-cred=sb~7nRcPgi4qeJIyQFeeqQwwzQ9oIGzG3im3lzP69O9AaadrloJyrPceYU7vkYcj42dLlYMa00mErg1WDMBdfkPTm9ck4GIgibYFyameIVXguRJja5C-m-9rImZvUA5xKDPMxw0XUbIhJ0%3D&x-bz-exp=1766661741&x-bz-security-isin=&x-bz-security-symbol=NASDAQ%3ATSLA&x-bz-signature=9191a7568754f5327ee41d87671af7618a2b6dd79526f870af005ac7cecf575c"
      },
      "colors": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

OAuth2 Bearer token: obtain an access token from the token endpoint and send it in the Authorization header.

Query Parameters

searchKeys
string
required

One or more values to look up, comma-separated. The format depends on searchKeysType. For example, with searchKeysType=symbol send AAPL,MSFT; with searchKeysType=cik send 0000320193,0000789019.

Example:

"AAPL,MSFT"

searchKeysType
enum<string>

Tells the API how to interpret the value you send in searchKeys. Allowed values:

  • firm_id — the value is a firm/company internal ID.
  • firm — the value is the firm/company name.
Available options:
firm_id,
firm
Example:

"symbol"

fields
string
required

Comma-separated list of logo asset fields to return. Required. Common values:

  • logo_light — full logo for light backgrounds.
  • logo_dark — full logo for dark backgrounds.
  • mark_light — square/icon mark for light backgrounds.
  • mark_dark — square/icon mark for dark backgrounds.

Other provider-defined fields may also be supported — pass any field name the upstream image catalog exposes.

Example:

"logo_light,logo_dark,mark_light,mark_dark"

compositeAuto
boolean
default:false

Whether to auto-generate composite logo marks. Use true when you need fallback visuals for symbols without a standard logo.

compositeRadius
integer

Corner radius for generated composite logos. Enter a value from 0 to 50 to match your UI style.

Required range: 0 <= x <= 50
scale
string

Image scale for returned logo URLs. Use higher scale values for high-density displays.

Response

Successful response

ok
boolean

Request success status

data
object[]

Array of logo data matching the search query