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

# /investing/quotes

> Get a market quote for an instrument by alias, section path, or URL

**Price:** 10 credits

**⚠️ Common errors:** 412: Instrument not found



## OpenAPI

````yaml /openapi/finance-markets.json post /api/investing/quotes
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/investing/quotes:
    post:
      tags:
        - /investing
      summary: /investing/quotes
      description: |-
        Get a market quote for an instrument by alias, section path, or URL

        **Price:** 10 credits

        **⚠️ Common errors:** 412: Instrument not found
      operationId: __api_investing_quotes_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/InvestingQuotesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/InvestingQuote'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    InvestingQuotesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        quote:
          type: string
          minLength: 1
      type: object
      required:
        - quote
    InvestingQuote:
      properties:
        '@type':
          type: string
          default: InvestingQuote
        id:
          type: integer
        alias:
          type: string
        path:
          type: string
        symbol:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        type:
          anyOf:
            - type: string
            - type: 'null'
        is_open:
          anyOf:
            - type: boolean
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        exchange:
          anyOf:
            - type: string
            - type: 'null'
        exchange_full_name:
          anyOf:
            - type: string
            - type: 'null'
        market_name:
          anyOf:
            - type: string
            - type: 'null'
        country_flag:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        last:
          anyOf:
            - type: number
            - type: 'null'
        open:
          anyOf:
            - type: number
            - type: 'null'
        high:
          anyOf:
            - type: number
            - type: 'null'
        low:
          anyOf:
            - type: number
            - type: 'null'
        previous_close:
          anyOf:
            - type: number
            - type: 'null'
        change:
          anyOf:
            - type: number
            - type: 'null'
        change_percent:
          anyOf:
            - type: number
            - type: 'null'
        bid:
          anyOf:
            - type: number
            - type: 'null'
        ask:
          anyOf:
            - type: number
            - type: 'null'
        volume:
          anyOf:
            - type: integer
            - type: 'null'
        average_volume:
          anyOf:
            - type: integer
            - type: 'null'
        fifty_two_week_high:
          anyOf:
            - type: number
            - type: 'null'
        fifty_two_week_low:
          anyOf:
            - type: number
            - type: 'null'
        one_year_change:
          anyOf:
            - type: number
            - type: 'null'
        premarket_price:
          anyOf:
            - type: number
            - type: 'null'
        premarket_change:
          anyOf:
            - type: number
            - type: 'null'
        premarket_change_percent:
          anyOf:
            - type: number
            - type: 'null'
        after_hours_price:
          anyOf:
            - type: number
            - type: 'null'
        after_hours_change:
          anyOf:
            - type: number
            - type: 'null'
        after_hours_change_percent:
          anyOf:
            - type: number
            - type: 'null'
        extended_hours_session:
          anyOf:
            - type: string
            - type: 'null'
        last_update_at:
          anyOf:
            - type: integer
            - type: 'null'
        market_cap:
          anyOf:
            - type: integer
            - type: 'null'
        eps:
          anyOf:
            - type: number
            - type: 'null'
        pe_ratio:
          anyOf:
            - type: number
            - type: 'null'
        dividend:
          anyOf:
            - type: number
            - type: 'null'
        dividend_yield:
          anyOf:
            - type: number
            - type: 'null'
        revenue:
          anyOf:
            - type: integer
            - type: 'null'
        shares_outstanding:
          anyOf:
            - type: integer
            - type: 'null'
        beta:
          anyOf:
            - type: number
            - type: 'null'
        next_earnings_date:
          anyOf:
            - type: string
            - type: 'null'
        isin:
          anyOf:
            - type: string
            - type: 'null'
        ticker:
          anyOf:
            - type: string
            - type: 'null'
        components_count:
          anyOf:
            - type: integer
            - type: 'null'
        rank:
          anyOf:
            - type: integer
            - type: 'null'
        available_supply:
          anyOf:
            - type: number
            - type: 'null'
        max_supply:
          anyOf:
            - type: number
            - type: 'null'
        price_usd:
          anyOf:
            - type: number
            - type: 'null'
        volume_24h:
          anyOf:
            - type: number
            - type: 'null'
        percent_change_7d:
          anyOf:
            - type: number
            - type: 'null'
        price_changes:
          anyOf:
            - $ref: '#/components/schemas/InvestingPriceChange'
            - type: 'null'
        technical_summary:
          anyOf:
            - $ref: '#/components/schemas/InvestingTechnicalSummary'
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - alias
        - path
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    InvestingPriceChange:
      properties:
        '@type':
          type: string
          default: InvestingPriceChange
        one_day:
          anyOf:
            - type: number
            - type: 'null'
        one_week:
          anyOf:
            - type: number
            - type: 'null'
        one_month:
          anyOf:
            - type: number
            - type: 'null'
        three_month:
          anyOf:
            - type: number
            - type: 'null'
        six_month:
          anyOf:
            - type: number
            - type: 'null'
        ytd:
          anyOf:
            - type: number
            - type: 'null'
        one_year:
          anyOf:
            - type: number
            - type: 'null'
        three_year:
          anyOf:
            - type: number
            - type: 'null'
        five_year:
          anyOf:
            - type: number
            - type: 'null'
        all_time:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    InvestingTechnicalSummary:
      properties:
        '@type':
          type: string
          default: InvestingTechnicalSummary
        five_min:
          anyOf:
            - type: string
            - type: 'null'
        fifteen_min:
          anyOf:
            - type: string
            - type: 'null'
        thirty_min:
          anyOf:
            - type: string
            - type: 'null'
        one_hour:
          anyOf:
            - type: string
            - type: 'null'
        five_hour:
          anyOf:
            - type: string
            - type: 'null'
        daily:
          anyOf:
            - type: string
            - type: 'null'
        weekly:
          anyOf:
            - type: string
            - type: 'null'
        monthly:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````