Corporate Logos v1.1 API Reference

Free Trial ➡

The Benzinga Corporate Logo API is designed to be flexible with client sizing requirements. Custom filters can be applied to resize the logos and each logo returns a variety of identifiers like ISIN and CUSIP.

API Endpoint
https://api.benzinga.com/api/v1.1
Response Content-Types

application/json, application/xml (deprecated)

Schemes

https, http

Version

1.1.0

Authentication

token authentication

Type:
apiKey
Name:
token
In:
query

Playground

Endpoints

GET /logos

Logos for market securities

Parameters

NameTypeLocationDescription
acceptstring , x ∈ { application/xml (deprecated) , application/json (default) }header

Specifies return format

symbolsstringquery

A list of ticker symbols separated by a comma (,). Limit 50 tickers per request.

filtersstringquery

A list of client-specific filters to be applied. Filters are separated by a comma (,).

Responses

CodeModelDescription
200 OKlogos

Successful response

Response (200 OK)

[
  {
    "created": "integer (int64)",
    "updated": "integer (int64)",
    "files": {
      "original": "string",
      "90x60_white": "string",
      "90x60_grayscale": "string",
      "CUSTOM_FILTER": "string"
    },
    "security": {
      "symbol": "string",
      "cik": "integer (int64)",
      "name": "string",
      "exchange": "string"
    }
  }
]

Models

logos: object

PropertyTypeDescription
createdinteger (int64)

Created timestamp, UTC

updatedinteger (int64)

Last updated timestamp, UTC

filesobject-
files.originalstring

URI of original file

files.90x60_whitestring

URI of resized 90x60 logo, full color with a white or transparent background

files.90x60_grayscalestring

URI of resized resized 90x60 logo, grayscaled with a white or transparent background

files.CUSTOM_FILTERstring

One or most custom filters

securityobject-
security.symbolstring

Abbreviated name of listed security

security.cikinteger (int64)

Identifier of security

security.namestring

Name of security

security.exchangestring

Name of exchange the security is listed on

Structure (JSON)
{
  "created": "integer (int64)",
  "updated": "integer (int64)",
  "files": {
    "original": "string",
    "90x60_white": "string",
    "90x60_grayscale": "string",
    "CUSTOM_FILTER": "string"
  },
  "security": {
    "symbol": "string",
    "cik": "integer (int64)",
    "name": "string",
    "exchange": "string"
  }
}

security: object

PropertyTypeDescription
symbolstring

Abbreviated name of listed security

cikinteger (int64)

Identifier of security

namestring

Name of security

exchangestring

Name of exchange the security is listed on

Structure (JSON)
{
  "symbol": "string",
  "cik": "integer (int64)",
  "name": "string",
  "exchange": "string"
}

files: object

PropertyTypeDescription
originalstring

URI of original file

90x60_whitestring

URI of resized 90x60 logo, full color with a white or transparent background

90x60_grayscalestring

URI of resized resized 90x60 logo, grayscaled with a white or transparent background

CUSTOM_FILTERstring

One or most custom filters

Structure (JSON)
{
  "original": "string",
  "90x60_white": "string",
  "90x60_grayscale": "string",
  "CUSTOM_FILTER": "string"
}