> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chicago.global/llms.txt
> Use this file to discover all available pages before exploring further.

# Company Info

> Get comprehensive company information including description, sector, market data, latest price, and Parallax factor scores.

Get comprehensive company information including description, sector, market data, latest price, and Parallax factor scores.

## Query Parameters

| Parameter | Type   | Required | Description                                                           |
| --------- | ------ | -------- | --------------------------------------------------------------------- |
| `symbol`  | string | Yes      | Stock symbol (e.g., `AAPL`, `0700.HK`). Comma-separated for multiple. |

## Response

```json theme={null}
{
  "activity": "Active",
  "change": "7.16",
  "changepercent": "2.9",
  "close": "253.79",
  "currency": "USD",
  "defensive": "9.5",
  "description": "Apple Inc. designs, manufactures and markets smartphones, personal computers, tablets, wearables and accessories, and sells a variety of related services...",
  "exchange": "Nasdaq",
  "exchangecode": "NAS",
  "high": "254.28",
  "industry": "Phones & Handheld Devices",
  "low": "247.10",
  "market": "United States",
  "momentum": "7.5",
  "mktcap": "3731400000000",
  "name": "Apple Inc",
  "open": "247.49",
  "quality": "10.0",
  "recommendation": "HOLD",
  "ric": "AAPL.O",
  "sector": "Technology",
  "tactical": "7.0",
  "total": "6.0",
  "value": "2.0",
  "volume": "62000000"
}
```

## Key Fields

| Field                                                       | Description                                        |
| ----------------------------------------------------------- | -------------------------------------------------- |
| `ric`                                                       | Reuters Instrument Code                            |
| `name`                                                      | Company name                                       |
| `description`                                               | Business description                               |
| `sector` / `industry`                                       | Sector and industry classification                 |
| `market`                                                    | Country/market                                     |
| `exchange`                                                  | Stock exchange                                     |
| `close` / `change` / `changepercent`                        | Latest price data                                  |
| `mktcap`                                                    | Market capitalization                              |
| `value` / `quality` / `momentum` / `defensive` / `tactical` | Parallax factor scores (0-10)                      |
| `total`                                                     | Composite Parallax score                           |
| `recommendation`                                            | `STRONG BUY`, `BUY`, `HOLD`, `SELL`, `STRONG SELL` |

## Example

```bash theme={null}
curl "https://api.chicago.global/v1/company-info?symbol=AAPL" \
  -H "Authorization: Bearer YOUR_API_KEY"
```


## OpenAPI

````yaml GET /v1/company-info
openapi: 3.1.0
info:
  title: Parallax API
  description: >-
    Financial data and portfolio analytics API. Analyze portfolios with
    multi-currency support, rebalancing, and comprehensive metrics.
  version: 1.0.0
servers:
  - url: https://api.chicago.global
security:
  - bearerAuth: []
paths:
  /v1/company-info:
    get:
      tags:
        - Company
      summary: Company Info
      description: >-
        Get comprehensive company information including description, sector,
        market data, latest price, and Parallax factor scores.
      operationId: getCompanyInfo
      parameters:
        - name: symbol
          in: query
          required: true
          description: Stock symbol (e.g., AAPL, 0700.HK). Comma-separated for multiple.
          schema:
            type: string
          example: AAPL
      responses:
        '200':
          description: Company information retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CompanyInfoResponse'
              example:
                activity: Active
                change: '7.16'
                changepercent: '2.9'
                close: '253.79'
                currency: USD
                defensive: '9.5'
                description: >-
                  Apple Inc. designs, manufactures and markets smartphones,
                  personal computers, tablets, wearables and accessories...
                exchange: Nasdaq
                exchangecode: NAS
                high: '254.28'
                industry: Phones & Handheld Devices
                low: '247.10'
                market: United States
                momentum: '7.5'
                mktcap: '3731400000000'
                name: Apple Inc
                open: '247.49'
                quality: '10.0'
                recommendation: HOLD
                ric: AAPL.O
                sector: Technology
                tactical: '7.0'
                total: '6.0'
                value: '2.0'
                volume: '62000000'
        '401':
          description: Unauthorized - Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    CompanyInfoResponse:
      type: object
      properties:
        ric:
          type: string
          description: Reuters Instrument Code
        name:
          type: string
          description: Company name
        description:
          type: string
          description: Business description
        sector:
          type: string
          description: Sector classification
        industry:
          type: string
          description: Industry classification
        market:
          type: string
          description: Country/market
        exchange:
          type: string
          description: Stock exchange
        exchangecode:
          type: string
          description: Exchange code
        currency:
          type: string
          description: Trading currency
        activity:
          type: string
          description: Company status
        close:
          type: string
          description: Latest closing price
        open:
          type: string
          description: Opening price
        high:
          type: string
          description: Day high
        low:
          type: string
          description: Day low
        change:
          type: string
          description: Absolute price change
        changepercent:
          type: string
          description: Percentage price change
        volume:
          type: string
          description: Trading volume
        mktcap:
          type: string
          description: Market capitalization
        value:
          type: string
          description: Parallax value score (0-10)
        quality:
          type: string
          description: Parallax quality score (0-10)
        momentum:
          type: string
          description: Parallax momentum score (0-10)
        defensive:
          type: string
          description: Parallax defensive score (0-10)
        tactical:
          type: string
          description: Parallax tactical score (0-10)
        total:
          type: string
          description: Composite Parallax score
        recommendation:
          type: string
          description: STRONG BUY, BUY, HOLD, SELL, STRONG SELL
    Error:
      type: object
      properties:
        detail:
          type: string
          description: Error message
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key passed as Bearer token

````