# Get Company Profile

Retrieves company profile for one instrument.

# 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/company-profiles/get",
  "method": "get",
  "tags": [
    "Instruments"
  ],
  "description": "Retrieves company profile for one instrument.",
  "operationId": "listCompanyProfileUsingGET",
  "parameters": [
    {
      "name": "symbol",
      "in": "query",
      "description": "Security symbol.",
      "required": true,
      "schema": {
        "type": "string"
      },
      "example": "AAPL"
    },
    {
      "name": "category",
      "in": "query",
      "description": "Security type. Category values are as shown in the enum. default is US_STOCK",
      "required": true,
      "schema": {
        "type": "string",
        "enum": [
          "US_STOCK"
        ]
      },
      "example": "US_STOCK"
    },
    {
      "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"
    }
  ],
  "responses": {
    "200": {
      "description": "OK",
      "content": {
        "application/json": {
          "schema": {
            "type": "object",
            "properties": {
              "symbol": {
                "type": "string",
                "description": "Security symbol",
                "example": "NVDA"
              },
              "category": {
                "type": "string",
                "description": "Security type",
                "example": "US_STOCK"
              },
              "company_name": {
                "type": "string",
                "description": "Company name",
                "example": "NVIDIA Corp"
              },
              "establish_date": {
                "type": "string",
                "description": "Date of incorporation",
                "example": "1998-02-24"
              },
              "exhibition_code": {
                "type": "string",
                "description": "The exchange or market where the security is listed (e.g., NASDAQ, NYSE)",
                "example": "NASDAQ"
              },
              "profile": {
                "type": "string",
                "description": "Company profile",
                "example": "NVIDIA Corporation is a full-stack computing infrastructure company."
              },
              "employees": {
                "type": "string",
                "description": "Number of employees",
                "example": "36000"
              },
              "address": {
                "type": "string",
                "description": "Headquarters address",
                "example": "2788 San Tomas Expressway,SANTA CLARA,CA,United States"
              },
              "ceo": {
                "type": "string",
                "description": "Company CEO",
                "example": "Jen-Hsun Huang"
              },
              "industries": {
                "type": "array",
                "description": "Company industries",
                "example": [
                  "Semiconductors",
                  "Semiconductors & Semiconductor Equipment"
                ],
                "items": {
                  "type": "string",
                  "description": "Company industries",
                  "example": "[\"Semiconductors\",\"Semiconductors & Semiconductor Equipment\"]"
                }
              }
            },
            "title": "CompanyProfile"
          }
        }
      }
    }
  },
  "postman": {
    "name": "Get Company Profile",
    "description": {
      "content": "Retrieves company profile for one instrument.",
      "type": "text/plain"
    },
    "url": {
      "path": [
        "market-data",
        "fundamentals",
        "company-profiles",
        "get"
      ],
      "host": [
        "{{baseUrl}}"
      ],
      "query": [
        {
          "disabled": false,
          "description": {
            "content": "(Required) Security symbol.",
            "type": "text/plain"
          },
          "key": "symbol",
          "value": ""
        },
        {
          "disabled": false,
          "description": {
            "content": "(Required) Security type. Category values are as shown in the enum. default is US_STOCK",
            "type": "text/plain"
          },
          "key": "category",
          "value": ""
        }
      ],
      "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": "Accept",
        "value": "application/json"
      }
    ],
    "method": "GET"
  }
}
```
