# List Logos

Retrieves logo image URLs for the specified securities. URLs are hosted on Webull's CDN.

# OpenAPI definition

```json
{
  "info": {
    "title": "Webull Open API Reference",
    "description": "application.yml\\ncom\\ni18n\\nMETA-INF\\nstatic\\n\\r\\n",
    "contact": {
      "name": "",
      "url": "",
      "email": ""
    },
    "version": "2.0",
    "x-logo": {
      "url": "static/png/logo.png"
    }
  },
  "servers": [
    {
      "url": "https://hk-co-branding-openapi.uat.webullbroker.com"
    }
  ],
  "path": "/market-data/fundamentals/logos/list",
  "method": "post",
  "tags": [
    "Instruments"
  ],
  "description": "Retrieves logo image URLs for the specified securities. URLs are hosted on Webull's CDN.",
  "operationId": "batchLogoUsingPOST",
  "parameters": [
    {
      "name": "access_token",
      "in": "header",
      "description": "User's authenticated token.",
      "required": true,
      "schema": {
        "type": "string"
      }
    },
    {
      "name": "reqid",
      "in": "header",
      "description": "The unique ID for this request. Suggest using UUID.",
      "schema": {
        "type": "string"
      },
      "example": "2e46d5a4-bef9-4507-8cda-98f85d2f770c"
    }
  ],
  "requestBody": {
    "content": {
      "application/json": {
        "schema": {
          "type": "array",
          "items": {
            "required": [
              "category",
              "symbols"
            ],
            "type": "object",
            "properties": {
              "category": {
                "type": "string",
                "description": "Security type. Category values are as shown in the enum.",
                "example": "US_STOCK",
                "enum": [
                  "US_STOCK"
                ]
              },
              "symbols": {
                "type": "array",
                "description": "List of security symbols, supports JSON array format, multiple symbols separated by commas; maximum 100 symbols per query.",
                "example": [
                  "AAPL",
                  "GOOG"
                ],
                "items": {
                  "type": "string",
                  "description": "List of security symbols, supports JSON array format, multiple symbols separated by commas; maximum 100 symbols per query.",
                  "example": "[\"AAPL\",\"GOOG\"]"
                }
              }
            },
            "title": "TickerLogoParam"
          }
        }
      }
    },
    "required": true
  },
  "responses": {
    "200": {
      "description": "OK",
      "content": {
        "application/json": {
          "schema": {
            "type": "object",
            "properties": {
              "symbol": {
                "type": "string",
                "description": "Security symbol",
                "example": "AAPL"
              },
              "category": {
                "type": "string",
                "description": "Security type. Category values are as shown in the enum",
                "example": "US_STOCK",
                "enum": [
                  "US_STOCK"
                ]
              },
              "logo_url": {
                "type": "string",
                "description": "Ticker's icon url. Returns null if no logo is available for the symbol",
                "example": "https://quotes-static.webullfintech.com/ticker-icon/950982786.png"
              }
            },
            "description": "Ticker Logos response object",
            "title": "TickerLogoVo"
          }
        }
      }
    }
  },
  "jsonRequestBodyExample": [
    {
      "category": "US_STOCK",
      "symbols": [
        "AAPL",
        "GOOG"
      ]
    }
  ],
  "postman": {
    "name": "List Logos",
    "description": {
      "content": "Retrieves logo image URLs for the specified securities. URLs are hosted on Webull's CDN.",
      "type": "text/plain"
    },
    "url": {
      "path": [
        "market-data",
        "fundamentals",
        "logos",
        "list"
      ],
      "host": [
        "{{baseUrl}}"
      ],
      "query": [],
      "variable": []
    },
    "header": [
      {
        "disabled": false,
        "description": {
          "content": "(Required) User's authenticated token.",
          "type": "text/plain"
        },
        "key": "access_token",
        "value": ""
      },
      {
        "disabled": false,
        "description": {
          "content": "The unique ID for this request. Suggest using UUID.",
          "type": "text/plain"
        },
        "key": "reqid",
        "value": ""
      },
      {
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "method": "POST",
    "body": {
      "mode": "raw",
      "raw": "",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    }
  }
}
```
