/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": {}
}
]
}/investing
/investing/quotes
Get a market quote for an instrument by alias, section path, or URL
Price: 10 credits
⚠️ Common errors: 412: Instrument not found
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
API token from the dashboard
Headers
Body
application/json
Response
Successful Response
Show child attributes
Show child attributes
Show child attributes
Show child attributes