Sugra API V1.0.0
  1. /v1/quotes
Sugra API V1.0.0
  • /v1/quotes
    • Retrieves all available information for a given stock symbol.
      GET
    • Get Stock Price
      GET
    • Retrieves news related to a given stock symbol.
      GET
    • Retrieves stock recommendations for a given symbol.
      GET
    • Retrieves upgrades and downgrades for a given stock symbol.
      GET
    • Retrieve targets for a stock symbol
      GET
    • Retrieves historical actions related to a given stock symbol.
      GET
    • Retrieves earnings report dates for a given stock symbol.
      GET
    • Retrieves top institutional holders for a given stock symbol.
      GET
    • Retrieves top mutual fund holders for a given stock symbol.
      GET
    • Retrieves insider roster holders for a given stock symbol.
      GET
    • Retrieves insider transactions for a given stock symbol.
      GET
    • Retrieves annual or quarterly income statements for a given stock symbol.
      GET
    • Retrieves annual or quarterly balance sheets for a given stock symbol.
      GET
    • Retrieves annual or quarterly cash flow data for a given stock symbol.
      GET
    • Retrieves multiple stock quotes
      GET
    • Get technical analysis for a stock symbol
      GET
    • Retrieve SEC filings for a specific stock symbol
      GET
    • Retrieves the ISIN (International Securities Identification Number) for a given stock symbol.
      GET
    • Get Stock Dividend Information
      GET
    • Retrieves Historical Price information for a given stock symbol.
      GET
  • v1/economics/
    • Get Economic Countries Indicators
      GET
    • Get Economics Indicators Overview
      GET
    • Get Economics GDP Indicators
      GET
    • Get Economics labour Indicators
      GET
    • Get Economics Prices Indicators
      GET
    • Get Economics Health Indicators
      GET
    • Get Economics Money Indicators
      GET
    • Get Economics Trade Indicators
      GET
    • Get Economics Government Indicators
      GET
    • Get Economics Business Indicators
      GET
    • Get Economics Consumer Indicators
      GET
    • Get Economics Housing Indicators
      GET
  1. /v1/quotes

Retrieves Historical Price information for a given stock symbol.

GET
https://api.sugra.ai/v1/quotes/{symbol}/historical
Last modified:2024-03-03 14:36:40
Maintainer:Not configured
OperationId:getHistoricalStockPrice
Retrieves Historical Price information for a given stock symbol.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.sugra.ai/v1/quotes/aapl/historical?period=3m&start=2021-01-01&end=2021-12-31' \
--header 'x-api-key:   ABCD314159'
Response Response Example
[
    {
        "Close": 187.4408111572,
        "Date": "2024-02-05T05:00:00.000Z"
    },
    {
        "Close": 189.0587615967,
        "Date": "2024-02-06T05:00:00.000Z"
    },
    {
        "Close": 189.1686248779,
        "Date": "2024-02-07T05:00:00.000Z"
    },
    {
        "Close": 188.0800170898,
        "Date": "2024-02-08T05:00:00.000Z"
    },
    {
        "Close": 188.8500061035,
        "Date": "2024-02-09T05:00:00.000Z"
    },
    {
        "Close": 187.1499938965,
        "Date": "2024-02-12T05:00:00.000Z"
    },
    {
        "Close": 185.0399932861,
        "Date": "2024-02-13T05:00:00.000Z"
    },
    {
        "Close": 184.1499938965,
        "Date": "2024-02-14T05:00:00.000Z"
    },
    {
        "Close": 183.8600006104,
        "Date": "2024-02-15T05:00:00.000Z"
    },
    {
        "Close": 182.3099975586,
        "Date": "2024-02-16T05:00:00.000Z"
    },
    {
        "Close": 181.5599975586,
        "Date": "2024-02-20T05:00:00.000Z"
    },
    {
        "Close": 182.3200073242,
        "Date": "2024-02-21T05:00:00.000Z"
    },
    {
        "Close": 184.3699951172,
        "Date": "2024-02-22T05:00:00.000Z"
    },
    {
        "Close": 182.5200042725,
        "Date": "2024-02-23T05:00:00.000Z"
    },
    {
        "Close": 181.1600036621,
        "Date": "2024-02-26T05:00:00.000Z"
    },
    {
        "Close": 182.6300048828,
        "Date": "2024-02-27T05:00:00.000Z"
    },
    {
        "Close": 181.4199981689,
        "Date": "2024-02-28T05:00:00.000Z"
    },
    {
        "Close": 180.75,
        "Date": "2024-02-29T05:00:00.000Z"
    },
    {
        "Close": 179.6600036621,
        "Date": "2024-03-01T05:00:00.000Z"
    }
]

Request

Path Params
symbol
string 
required
Example:
aapl
Query Params
period
string 
optional
return fo period 3m for 3 Month. (years, month, weeks, days)
Example:
3m
start
string 
optional
Example:
2021-01-01
end
string 
optional
Example:
2021-12-31
Header Params
x-api-key
string 
optional
Default:
ABCD314159

Responses

🟢200Success
application/json
Body
array of:
Close
number 
required
Date
string 
required
Modified at 2024-03-03 14:36:40
Previous
Get Stock Dividend Information
Next
Get Economic Countries Indicators
Built with