Skip to main content
POST
/
api
/
investing
/
quotes
/investing/quotes
curl --request POST \
  --url https://api.anysite.io/api/investing/quotes \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "quote": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "alias": "<string>",
    "path": "<string>",
    "@type": "@investing_quote",
    "symbol": "<string>",
    "name": "<string>",
    "type": "<string>",
    "is_open": true,
    "currency": "<string>",
    "exchange": "<string>",
    "exchange_full_name": "<string>",
    "market_name": "<string>",
    "country_flag": "<string>",
    "image": "<string>",
    "last": 123,
    "open": 123,
    "high": 123,
    "low": 123,
    "previous_close": 123,
    "change": 123,
    "change_percent": 123,
    "bid": 123,
    "ask": 123,
    "volume": 123,
    "average_volume": 123,
    "fifty_two_week_high": 123,
    "fifty_two_week_low": 123,
    "one_year_change": 123,
    "premarket_price": 123,
    "premarket_change": 123,
    "premarket_change_percent": 123,
    "after_hours_price": 123,
    "after_hours_change": 123,
    "after_hours_change_percent": 123,
    "extended_hours_session": "<string>",
    "last_update_at": 123,
    "market_cap": 123,
    "eps": 123,
    "pe_ratio": 123,
    "dividend": 123,
    "dividend_yield": 123,
    "revenue": 123,
    "shares_outstanding": 123,
    "beta": 123,
    "next_earnings_date": "<string>",
    "isin": "<string>",
    "ticker": "<string>",
    "components_count": 123,
    "rank": 123,
    "available_supply": 123,
    "max_supply": 123,
    "price_usd": 123,
    "volume_24h": 123,
    "percent_change_7d": 123,
    "price_changes": {
      "@type": "@investing_price_change",
      "one_day": 123,
      "one_week": 123,
      "one_month": 123,
      "three_month": 123,
      "six_month": 123,
      "ytd": 123,
      "one_year": 123,
      "three_year": 123,
      "five_year": 123,
      "all_time": 123
    },
    "technical_summary": {
      "@type": "@investing_technical_summary",
      "five_min": "<string>",
      "fifteen_min": "<string>",
      "thirty_min": "<string>",
      "one_hour": "<string>",
      "five_hour": "<string>",
      "daily": "<string>",
      "weekly": "<string>",
      "monthly": "<string>"
    },
    "url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
quote
string
required

Instrument to look up: a ticker symbol or name ('AAPL', 'Bitcoin'), a section path ('/equities/apple-computer-inc'), or a full instrument URL. Works for stocks, indices, ETFs, currencies, crypto, commodities and bonds.

Minimum string length: 1
Examples:

"AAPL"

"/indices/us-spx-500"

"https://www.investing.com/crypto/bitcoin"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
alias
string
required
path
string
required
@type
string
default:@investing_quote
symbol
string | null
name
string | null
type
string | null
is_open
boolean | null
currency
string | null
exchange
string | null
exchange_full_name
string | null
market_name
string | null
country_flag
string | null
image
string | null
last
number | null
open
number | null
high
number | null
low
number | null
previous_close
number | null
change
number | null
change_percent
number | null
bid
number | null
ask
number | null
volume
integer | null
average_volume
integer | null
fifty_two_week_high
number | null
fifty_two_week_low
number | null
one_year_change
number | null
premarket_price
number | null
premarket_change
number | null
premarket_change_percent
number | null
after_hours_price
number | null
after_hours_change
number | null
after_hours_change_percent
number | null
extended_hours_session
string | null
last_update_at
integer | null
market_cap
integer | null
eps
number | null
pe_ratio
number | null
dividend
number | null
dividend_yield
number | null
revenue
integer | null
shares_outstanding
integer | null
beta
number | null
next_earnings_date
string | null
isin
string | null
ticker
string | null
components_count
integer | null
rank
integer | null
available_supply
number | null
max_supply
number | null
price_usd
number | null
volume_24h
number | null
percent_change_7d
number | null
price_changes
InvestingPriceChange · object
technical_summary
InvestingTechnicalSummary · object
url
string | null