Corporate Logos v1.1 API Reference
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
Name | Type | Location | Description |
---|---|---|---|
accept | string , x ∈ { application/xml (deprecated) , application/json (default) } | header | Specifies return format |
symbols | string | query | A list of ticker symbols separated by a comma (,). Limit 50 tickers per request. |
filters | string | query | A list of client-specific filters to be applied. Filters are separated by a comma (,). |
Responses
Code | Model | Description |
---|---|---|
200 OK | logos | 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
Property | Type | Description |
---|---|---|
created | integer (int64) | Created timestamp, UTC |
updated | integer (int64) | Last updated timestamp, UTC |
files | object | - |
files.original | string | URI of original file |
files.90x60_white | string | URI of resized 90x60 logo, full color with a white or transparent background |
files.90x60_grayscale | string | URI of resized resized 90x60 logo, grayscaled with a white or transparent background |
files.CUSTOM_FILTER | string | One or most custom filters |
security | object | - |
security.symbol | string | Abbreviated name of listed security |
security.cik | integer (int64) | Identifier of security |
security.name | string | Name of security |
security.exchange | string | 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
Property | Type | Description |
---|---|---|
symbol | string | Abbreviated name of listed security |
cik | integer (int64) | Identifier of security |
name | string | Name of security |
exchange | string | Name of exchange the security is listed on |
Structure (JSON)
{
"symbol": "string",
"cik": "integer (int64)",
"name": "string",
"exchange": "string"
}
files: object
Property | Type | Description |
---|---|---|
original | string | URI of original file |
90x60_white | string | URI of resized 90x60 logo, full color with a white or transparent background |
90x60_grayscale | string | URI of resized resized 90x60 logo, grayscaled with a white or transparent background |
CUSTOM_FILTER | string | One or most custom filters |
Structure (JSON)
{
"original": "string",
"90x60_white": "string",
"90x60_grayscale": "string",
"CUSTOM_FILTER": "string"
}