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>'
import requests

url = "https://api.aries.com/v1/logos/search"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.aries.com/v1/logos/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.aries.com/v1/logos/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.aries.com/v1/logos/search"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.aries.com/v1/logos/search")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.aries.com/v1/logos/search")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "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. 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