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

# Get Shares Float Data

> **Feature Overview**
[OpenAPI JSON Spec](/docs/output/v1_stocks_shares-float_get.json)
Retrieve shares float information for a specified stock symbol. This endpoint provides detailed data about free float, outstanding shares, and float shares for equity analysis.

**Main Use Cases**
- **Equity Analysis**: Analyze stock float and outstanding shares
- **Liquidity Assessment**: Evaluate stock liquidity based on float data
- **Investment Research**: Understand stock structure and trading characteristics
- **Risk Management**: Assess concentration risk and float availability
- **Compliance Monitoring**: Track float requirements and regulations

**Response Data Structure**

`data` is a flat array of SharesFloat items:

**SharesFloat fields:**
- `symbol` (string): Stock symbol
- `date` (string): Data date and time
- `free_float` (float64): Free float percentage
- `float_shares` (string): Number of float shares
- `outstanding_shares` (string): Number of outstanding shares
- `source` (string): Data source URL



## OpenAPI

````yaml /api-reference/openapi.json get /v1/stocks/shares-float
openapi: 3.0.0
info:
  contact: {}
  description: >-
    Welcome to Arrays!


    Arrays is a unified financial data layer for both financial institutions and
    retail users, delivering comprehensive market data across crypto and equity
    markets. Our datasets cover fundamentals, ETFs, options, crypto, and more.


    Visit [arrays.org](https://arrays.org) to request an API key and start your
    free trial. You can explore our full API offerings in the documentation
    below.


    For any questions regarding APIs or pricing, please contact
    support@arrays.org.
  title: Arrays API
  version: '1.0'
servers:
  - url: https://data-tools.prd.arrays.org/api
security: []
paths:
  /v1/stocks/shares-float:
    get:
      tags:
        - Stock
      summary: Get Shares Float Data
      description: >-
        **Feature Overview**

        [OpenAPI JSON Spec](/docs/output/v1_stocks_shares-float_get.json)

        Retrieve shares float information for a specified stock symbol. This
        endpoint provides detailed data about free float, outstanding shares,
        and float shares for equity analysis.


        **Main Use Cases**

        - **Equity Analysis**: Analyze stock float and outstanding shares

        - **Liquidity Assessment**: Evaluate stock liquidity based on float data

        - **Investment Research**: Understand stock structure and trading
        characteristics

        - **Risk Management**: Assess concentration risk and float availability

        - **Compliance Monitoring**: Track float requirements and regulations


        **Response Data Structure**


        `data` is a flat array of SharesFloat items:


        **SharesFloat fields:**

        - `symbol` (string): Stock symbol

        - `date` (string): Data date and time

        - `free_float` (float64): Free float percentage

        - `float_shares` (string): Number of float shares

        - `outstanding_shares` (string): Number of outstanding shares

        - `source` (string): Data source URL
      parameters:
        - description: Stock symbol (uppercase, e.g., AAPL, MSFT, GOOGL)
          in: query
          name: symbol
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successfully retrieved shares float data
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/model.APIResponse'
                  - properties:
                      data:
                        items:
                          $ref: '#/components/schemas/model.SharesFloat'
                        type: array
                    type: object
        '400':
          description: Invalid parameters
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/model.APIResponse'
                  - properties:
                      data:
                        $ref: '#/components/schemas/model.APIError'
                    type: object
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/model.APIResponse'
                  - properties:
                      data:
                        $ref: '#/components/schemas/model.APIError'
                    type: object
      security:
        - ApiKeyAuth: []
components:
  schemas:
    model.APIResponse:
      properties:
        data: {}
        error:
          $ref: '#/components/schemas/model.APIError'
        metadata: {}
        pagination: {}
        request_id:
          type: string
        success:
          type: boolean
      type: object
    model.SharesFloat:
      properties:
        date:
          example: '2025-09-09 03:18:20'
          type: string
        float_shares:
          example: '14824921462'
          type: string
        free_float:
          example: 99.89570086161085
          type: number
        outstanding_shares:
          example: '14840399872'
          type: string
        source:
          example: >-
            https://www.sec.gov/Archives/edgar/data/320193/000032019324000123/aapl-20240928.htm
          type: string
        symbol:
          example: AAPL
          type: string
      type: object
    model.APIError:
      properties:
        code:
          example: RESOURCE_NOT_FOUND
          type: string
        details:
          items:
            $ref: '#/components/schemas/model.APIErrorDetail'
          type: array
        docs_url:
          type: string
        examples:
          items:
            type: string
          type: array
        hint:
          type: string
        message:
          example: The requested resource was not found.
          type: string
        suggestions:
          items:
            type: string
          type: array
      type: object
    model.APIErrorDetail:
      properties:
        field:
          type: string
        got:
          type: string
        reason:
          type: string
      type: object
  securitySchemes:
    ApiKeyAuth:
      description: 'API Key authentication. Example: "your-api-key-here"'
      in: header
      name: X-API-Key
      type: apiKey

````