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
}
'
import requests

url = "https://api.anysite.io/api/investing/quotes"

payload = {
"quote": "<string>",
"timeout": 300
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({quote: '<string>', timeout: 300})
};

fetch('https://api.anysite.io/api/investing/quotes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.anysite.io/api/investing/quotes",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'quote' => '<string>',
'timeout' => 300
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-token: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"strings"
"net/http"
"io"
)

func main() {

url := "https://api.anysite.io/api/investing/quotes"

payload := strings.NewReader("{\n \"quote\": \"<string>\",\n \"timeout\": 300\n}")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://api.anysite.io/api/investing/quotes")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"quote\": \"<string>\",\n \"timeout\": 300\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.anysite.io/api/investing/quotes")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"quote\": \"<string>\",\n \"timeout\": 300\n}"

response = http.request(request)
puts response.read_body
[
  {
    "id": 123,
    "alias": "<string>",
    "path": "<string>",
    "@type": "InvestingQuote",
    "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": "InvestingPriceChange",
      "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": "InvestingTechnicalSummary",
      "five_min": "<string>",
      "fifteen_min": "<string>",
      "thirty_min": "<string>",
      "one_hour": "<string>",
      "five_hour": "<string>",
      "daily": "<string>",
      "weekly": "<string>",
      "monthly": "<string>"
    },
    "url": "<string>"
  }
]
{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
quote
string
required
Minimum string length: 1
timeout
integer
default:300
Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
alias
string
required
path
string
required
@type
string
default:InvestingQuote
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
object | null
technical_summary
object | null
url
string | null