Skip to main content
POST
/
api
/
investing
/
quotes
/
technical
/investing/quotes/technical
curl --request POST \
  --url https://api.anysite.io/api/investing/quotes/technical \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "quote": "<string>",
  "timeout": 300
}
'
[
  {
    "@type": "@investing_technical",
    "summary": "<string>",
    "timeframe": "<string>",
    "last_update_at": "<string>",
    "indicators_summary": {
      "@type": "@investing_technical_signal_count",
      "buy": 123,
      "sell": 123,
      "neutral": 123
    },
    "moving_averages_summary": {
      "@type": "@investing_technical_signal_count",
      "buy": 123,
      "sell": 123,
      "neutral": 123
    },
    "indicators": [],
    "moving_averages": [],
    "pivot_points": {
      "@type": "@investing_pivot_points",
      "pivot": 123,
      "s1": 123,
      "s2": 123,
      "s3": 123,
      "r1": 123,
      "r2": 123,
      "r3": 123
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
quote
string
required

Instrument to analyze: a ticker/name, a section path, or an instrument URL.

Minimum string length: 1
Examples:

"AAPL"

"/crypto/bitcoin"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:@investing_technical
summary
string | null
timeframe
string | null
last_update_at
string | null
indicators_summary
InvestingTechnicalSignalCount · object
moving_averages_summary
InvestingTechnicalSignalCount · object
indicators
InvestingTechnicalIndicator · object[]
moving_averages
InvestingMovingAverage · object[]
pivot_points
InvestingPivotPoints · object