With Stocks API you will retrieve all the information related to any stock of your preference. This API will help you to gather all the latest rates for the stocks as well as additional information.
Our API will receive the stock symbol (ex: AAPL) and, depending on the endpoint, will retrieve either intraday information, daily information, etc. You will be receiving Open rates, close rates, highs, and lows, as well as volume traded. Also, if you do not know the name of a particular stock, you can find it with the name of the company on our "Search Symbol Endpoint".
This API is excellent for those developers who want to build a price tracking platform, you will have all your data refreshed, and also you will have access to data 20 years in the past. This is excellent for chart creation and market analysis.
Besides API call limitations per month:
Receive the latest rates of the equity you select. You can select and determine if you want to check the rates between 1min, 5min, 15min, 30min or 60min windows.
To be more specific, let's say that you want to check the latest rates for AAPL in a range of 15min between.
You will be receiving the open price of that time series, the closing price, and the high and low.
Output JSON response example:
{"Meta Data":{6 items
"1. Information":"Intraday (15min) open, high, low, close prices and volume"
"2. Symbol":"AAPL"
"3. Last Refreshed":"2022-07-01 20:00:00"
"4. Interval":"15min"
"5. Output Size":"Compact"
"6. Time Zone":"US/Eastern"
}
"Time Series (15min)":{
100 items
"2022-07-01 20:00:00":{5 items
"1. open":"138.9600"
"2. high":"139.0300"
"3. low":"138.9600"
"4. close":"139.0200"
"5. volume":"9012"
}
"2022-07-01 19:45:00":{
5 items
"1. open":"138.9400"
"2. high":"138.9600"
"3. low":"138.9400"
"4. close":"138.9600"
"5. volume":"1013"
}
"2022-07-01 19:30:00":{5 items
"1. open":"138.9300"
"2. high":"138.9700"
"3. low":"138.9300"
"4. close":"138.9500"
"5. volume":"1870"
}
"2022-07-01 19:15:00":{5 items
"1. open":"138.9600"
"2. high":"138.9800"
"3. low":"138.9300"
"4. close":"138.9600"
"5. volume":"3401"
}
Intraday Information - Características del Endpoint
Objeto | Descripción |
---|---|
interval |
[Requerido] Time interval between two consecutive data points in the time series. The following values are supported: 1min, 5min, 15min, 30min, 60min |
symbol |
[Requerido] The equity of your choice. Ex: AAPL |
datatype |
Opcional By default, datatype=json. Strings json and csv are accepted with the following specifications: json returns the intraday time series in JSON format; csv returns the time series as a CSV (comma separated value) file. |
{
"Meta Data": {
"1. Information": "Intraday (15min) open, high, low, close prices and volume",
"2. Symbol": "AAPL",
"3. Last Refreshed": "2022-07-01 20:00:00",
"4. Interval": "15min",
"5. Output Size": "Compact",
"6. Time Zone": "US/Eastern"
},
"Time Series (15min)": {
"2022-07-01 20:00:00": {
"1. open": "138.9600",
"2. high": "139.0300",
"3. low": "138.9600",
"4. close": "139.0200",
"5. volume": "9012"
},
"2022-07-01 19:45:00": {
"1. open": "138.9400",
"2. high": "138.9600",
"3. low": "138.9400",
"4. close": "138.9600",
"5. volume": "1013"
},
"2022-07-01 19:30:00": {
"1. open": "138.9300",
"2. high": "138.9700",
"3. low": "138.9300",
"4. close": "138.9500",
"5. volume": "1870"
},
"2022-07-01 19:15:00": {
"1. open": "138.9600",
"2. high": "138.9800",
"3. low": "138.9300",
"4. close": "138.9600",
"5. volume": "3401"
},
"2022-07-01 19:00:00": {
"1. open": "138.9500",
"2. high": "138.9800",
"3. low": "138.9200",
"4. close": "138.9600",
"5. volume": "8165"
},
"2022-07-01 18:45:00": {
"1. open": "138.9900",
"2. high": "139.0200",
"3. low": "138.9500",
"4. close": "138.9600",
"5. volume": "6449"
},
"2022-07-01 18:30:00": {
"1. open": "138.9500",
"2. high": "139.0000",
"3. low": "138.9200",
"4. close": "138.9500",
"5. volume": "9430"
},
"2022-07-01 18:15:00": {
"1. open": "138.9700",
"2. high": "138.9700",
"3. low": "138.9300",
"4. close": "138.9500",
"5. volume": "9182"
},
"2022-07-01 18:00:00": {
"1. open": "138.9975",
"2. high": "139.0399",
"3. low": "138.9600",
"4. close": "138.9700",
"5. volume": "9255"
},
"2022-07-01 17:45:00": {
"1. open": "139.0000",
"2. high": "139.0500",
"3. low": "138.9410",
"4. close": "138.9778",
"5. volume": "14506"
},
"2022-07-01 17:30:00": {
"1. open": "138.9700",
"2. high": "138.9700",
"3. low": "138.9400",
"4. close": "138.9500",
"5. volume": "17412"
},
"2022-07-01 17:15:00": {
"1. open": "139.0300",
"2. high": "139.0400",
"3. low": "138.9600",
"4. close": "139.0000",
"5. volume": "27542"
},
"2022-07-01 17:00:00": {
"1. open": "138.9600",
"2. high": "139.0400",
"3. low": "138.9300",
"4. close": "139.0300",
"5. volume": "28707"
},
"2022-07-01 16:45:00": {
"1. open": "138.8600",
"2. high": "138.9600",
"3. low": "138.8500",
"4. close": "138.9600",
"5. volume": "360767"
},
"2022-07-01 16:30:00": {
"1. open": "138.9000",
"2. high": "138.9500",
"3. low": "138.8701",
"4. close": "138.8701",
"5. volume": "40567"
},
"2022-07-01 16:15:00": {
"1. open": "138.9300",
"2. high": "139.2300",
"3. low": "138.9000",
"4. close": "138.9000",
"5. volume": "2220448"
},
"2022-07-01 16:00:00": {
"1. open": "138.5750",
"2. high": "139.0400",
"3. low": "138.2050",
"4. close": "138.9400",
"5. volume": "6309948"
},
"2022-07-01 15:45:00": {
"1. open": "138.2700",
"2. high": "138.7300",
"3. low": "138.2700",
"4. close": "138.5750",
"5. volume": "2555226"
},
"2022-07-01 15:30:00": {
"1. open": "138.2800",
"2. high": "138.4200",
"3. low": "138.0550",
"4. close": "138.2650",
"5. volume": "1688507"
},
"2022-07-01 15:15:00": {
"1. open": "138.3800",
"2. high": "138.4499",
"3. low": "137.8510",
"4. close": "138.2737",
"5. volume": "2000564"
},
"2022-07-01 15:00:00": {
"1. open": "138.2200",
"2. high": "138.5600",
"3. low": "138.1000",
"4. close": "138.3750",
"5. volume": "2027488"
},
"2022-07-01 14:45:00": {
"1. open": "137.8700",
"2. high": "138.2345",
"3. low": "137.8450",
"4. close": "138.2200",
"5. volume": "1409594"
},
"2022-07-01 14:30:00": {
"1. open": "137.5300",
"2. high": "138.1000",
"3. low": "137.4400",
"4. close": "137.8700",
"5. volume": "1574600"
},
"2022-07-01 14:15:00": {
"1. open": "137.7150",
"2. high": "137.7293",
"3. low": "137.2400",
"4. close": "137.5150",
"5. volume": "1259223"
},
"2022-07-01 14:00:00": {
"1. open": "137.4700",
"2. high": "137.7200",
"3. low": "137.3300",
"4. close": "137.7178",
"5. volume": "1304096"
},
"2022-07-01 13:45:00": {
"1. open": "137.0600",
"2. high": "137.5200",
"3. low": "137.0200",
"4. close": "137.4600",
"5. volume": "2654392"
},
"2022-07-01 13:30:00": {
"1. open": "136.8300",
"2. high": "137.0700",
"3. low": "136.5690",
"4. close": "137.0500",
"5. volume": "1449308"
},
"2022-07-01 13:15:00": {
"1. open": "136.5050",
"2. high": "136.8388",
"3. low": "136.4400",
"4. close": "136.8209",
"5. volume": "1107788"
},
"2022-07-01 13:00:00": {
"1. open": "136.6400",
"2. high": "136.9800",
"3. low": "136.5200",
"4. close": "136.5200",
"5. volume": "1181520"
},
"2022-07-01 12:45:00": {
"1. open": "137.0300",
"2. high": "137.1200",
"3. low": "136.5700",
"4. close": "136.6450",
"5. volume": "1378082"
},
"2022-07-01 12:30:00": {
"1. open": "136.4300",
"2. high": "137.1899",
"3. low": "136.4100",
"4. close": "137.0200",
"5. volume": "1797613"
},
"2022-07-01 12:15:00": {
"1. open": "136.3550",
"2. high": "136.5799",
"3. low": "136.0718",
"4. close": "136.4134",
"5. volume": "1435653"
},
"2022-07-01 12:00:00": {
"1. open": "136.6600",
"2. high": "136.9800",
"3. low": "136.2100",
"4. close": "136.3500",
"5. volume": "1601510"
},
"2022-07-01 11:45:00": {
"1. open": "136.6000",
"2. high": "137.0500",
"3. low": "136.5801",
"4. close": "136.6600",
"5. volume": "1518244"
},
"2022-07-01 11:30:00": {
"1. open": "136.8284",
"2. high": "137.2500",
"3. low": "136.4800",
"4. close": "136.6012",
"5. volume": "1964099"
},
"2022-07-01 11:15:00": {
"1. open": "136.5800",
"2. high": "137.0319",
"3. low": "136.1600",
"4. close": "136.8338",
"5. volume": "2170045"
},
"2022-07-01 11:00:00": {
"1. open": "136.1600",
"2. high": "136.9240",
"3. low": "135.9700",
"4. close": "136.5900",
"5. volume": "3376622"
},
"2022-07-01 10:45:00": {
"1. open": "136.0999",
"2. high": "136.2309",
"3. low": "135.6600",
"4. close": "136.1450",
"5. volume": "2722978"
},
"2022-07-01 10:30:00": {
"1. open": "136.5250",
"2. high": "136.8400",
"3. low": "136.0000",
"4. close": "136.0900",
"5. volume": "2765206"
},
"2022-07-01 10:15:00": {
"1. open": "137.7500",
"2. high": "138.3200",
"3. low": "136.4500",
"4. close": "136.5300",
"5. volume": "3749257"
},
"2022-07-01 10:00:00": {
"1. open": "136.6600",
"2. high": "138.1300",
"3. low": "136.6100",
"4. close": "137.7400",
"5. volume": "4060664"
},
"2022-07-01 09:45:00": {
"1. open": "136.0400",
"2. high": "137.2000",
"3. low": "136.0400",
"4. close": "136.6529",
"5. volume": "5859320"
},
"2022-07-01 09:30:00": {
"1. open": "136.3900",
"2. high": "136.7200",
"3. low": "135.9200",
"4. close": "136.0500",
"5. volume": "1...
curl --location --request GET 'https://zylalabs.com/api/33/stocks+api/97/intraday+information?interval=Required&symbol=Required' --header 'Authorization: Bearer YOUR_API_KEY'
With the Daily TimeSeries endpoint, you will be able to retrieve (date, daily open, daily high, daily low, daily close, daily volume) of the global equity specified, covering 20+ years of historical data.
Check the example with AAPL equity.
Example JSON output response:
{
"Meta Data": {
"1. Information": "Daily Prices (open, high, low, close) and Volumes",
"2. Symbol": "AAPL",
"3. Last Refreshed": "2022-07-01",
"4. Output Size": "Compact",
"5. Time Zone": "US/Eastern"
},
"Time Series (Daily)": {
"2022-07-01": {
"1. open": "136.0400",
"2. high": "139.0400",
"3. low": "135.6600",
"4. close": "138.9300",
"5. volume": "71051552"
},
"2022-06-30": {
"1. open": "137.2500",
"2. high": "138.3700",
"3. low": "133.7737",
"4. close": "136.7200",
"5. volume": "98964467"
},
"2022-06-29": {
"1. open": "137.4600",
"2. high": "140.6700",
"3. low": "136.6700",
"4. close": "139.2300",
"5. volume": "66242411"
}
Daily Timeseries - Características del Endpoint
Objeto | Descripción |
---|---|
symbol |
[Requerido] The name of the equity of your choice. Ex: AAPL |
outputsize |
Opcional Strings "compact" and "full" are accepted with the following specifications: compact returns only the latest 100 data points; full returns the full-length time series of 20+ years of historical data. The \\"compact\\" option is recommended if you would like to reduce the data size of each API call. |
datatype |
Opcional Strings "json" and "csv" are accepted with the following specifications: json returns the daily time series in JSON format; csv returns the time series as a CSV (comma separated value) file. |
{
"Meta Data": {
"1. Information": "Daily Prices (open, high, low, close) and Volumes",
"2. Symbol": "0MPH.LON",
"3. Last Refreshed": "2023-03-17",
"4. Output Size": "Compact",
"5. Time Zone": "US/Eastern"
},
"Time Series (Daily)": {
"2023-03-17": {
"1. open": "21.4550",
"2. high": "21.4550",
"3. low": "21.4550",
"4. close": "21.4550",
"5. volume": "5247591"
},
"2023-03-16": {
"1. open": "21.8400",
"2. high": "21.9450",
"3. low": "21.6470",
"4. close": "21.6700",
"5. volume": "1578099"
},
"2023-03-15": {
"1. open": "21.7650",
"2. high": "21.9350",
"3. low": "21.4450",
"4. close": "21.6800",
"5. volume": "9358345"
},
"2023-03-14": {
"1. open": "21.4700",
"2. high": "21.6600",
"3. low": "21.4200",
"4. close": "21.5750",
"5. volume": "16651749"
},
"2023-03-13": {
"1. open": "21.5650",
"2. high": "21.5850",
"3. low": "21.1600",
"4. close": "21.3350",
"5. volume": "2760648"
},
"2023-03-10": {
"1. open": "21.4200",
"2. high": "21.5900",
"3. low": "21.3600",
"4. close": "21.4400",
"5. volume": "1593093"
},
"2023-03-09": {
"1. open": "21.5250",
"2. high": "21.5950",
"3. low": "21.4800",
"4. close": "21.5200",
"5. volume": "389878"
},
"2023-03-08": {
"1. open": "21.3850",
"2. high": "21.5750",
"3. low": "21.3600",
"4. close": "21.5200",
"5. volume": "722851"
},
"2023-03-07": {
"1. open": "21.4050",
"2. high": "21.5300",
"3. low": "21.3700",
"4. close": "21.4091",
"5. volume": "1185788"
},
"2023-03-06": {
"1. open": "21.2600",
"2. high": "21.5350",
"3. low": "21.2550",
"4. close": "21.4557",
"5. volume": "696873"
},
"2023-03-03": {
"1. open": "21.2550",
"2. high": "21.3800",
"3. low": "21.0950",
"4. close": "21.1900",
"5. volume": "754836"
},
"2023-03-02": {
"1. open": "21.0700",
"2. high": "21.2800",
"3. low": "20.9900",
"4. close": "21.2800",
"5. volume": "726605"
},
"2023-03-01": {
"1. open": "21.3600",
"2. high": "21.4050",
"3. low": "21.0750",
"4. close": "21.1000",
"5. volume": "2644719"
},
"2023-02-28": {
"1. open": "21.3950",
"2. high": "21.5750",
"3. low": "21.2333",
"4. close": "21.3606",
"5. volume": "2411986"
},
"2023-02-27": {
"1. open": "20.9450",
"2. high": "21.3300",
"3. low": "20.9150",
"4. close": "21.2500",
"5. volume": "2187468"
},
"2023-02-24": {
"1. open": "21.2200",
"2. high": "21.3200",
"3. low": "20.9100",
"4. close": "21.0250",
"5. volume": "2176611"
},
"2023-02-23": {
"1. open": "21.1000",
"2. high": "21.4000",
"3. low": "21.0600",
"4. close": "21.1450",
"5. volume": "5764422"
},
"2023-02-22": {
"1. open": "20.8900",
"2. high": "21.1650",
"3. low": "20.8550",
"4. close": "21.1100",
"5. volume": "1695773"
},
"2023-02-21": {
"1. open": "20.7850",
"2. high": "20.9650",
"3. low": "20.7500",
"4. close": "20.9047",
"5. volume": "1173748"
},
"2023-02-20": {
"1. open": "20.8300",
"2. high": "20.8950",
"3. low": "20.7550",
"4. close": "20.8115",
"5. volume": "419221"
},
"2023-02-17": {
"1. open": "20.4600",
"2. high": "20.7800",
"3. low": "20.4000",
"4. close": "20.7350",
"5. volume": "3627491"
},
"2023-02-16": {
"1. open": "20.6950",
"2. high": "20.7100",
"3. low": "20.4250",
"4. close": "20.5450",
"5. volume": "1065748"
},
"2023-02-15": {
"1. open": "20.6050",
"2. high": "20.7850",
"3. low": "20.4350",
"4. close": "20.5100",
"5. volume": "1286235"
},
"2023-02-14": {
"1. open": "20.4900",
"2. high": "20.6700",
"3. low": "20.4350",
"4. close": "20.5721",
"5. volume": "5037838"
},
"2023-02-13": {
"1. open": "20.1650",
"2. high": "20.3550",
"3. low": "20.1500",
"4. close": "20.2459",
"5. volume": "1462959"
},
"2023-02-10": {
"1. open": "20.1800",
"2. high": "20.2500",
"3. low": "20.0650",
"4. close": "20.1850",
"5. volume": "2677039"
},
"2023-02-09": {
"1. open": "20.2450",
"2. high": "20.4000",
"3. low": "20.1450",
"4. close": "20.1550",
"5. volume": "5970145"
},
"2023-02-08": {
"1. open": "20.1050",
"2. high": "20.2450",
"3. low": "20.0850",
"4. close": "20.1800",
"5. volume": "631716"
},
"2023-02-07": {
"1. open": "20.0850",
"2. high": "20.1800",
"3. low": "19.9060",
"4. close": "20.0428",
"5. volume": "1138633"
},
"2023-02-06": {
"1. open": "20.1850",
"2. high": "20.2800",
"3. low": "20.0200",
"4. close": "20.1100",
"5. volume": "822671"
},
"2023-02-03": {
"1. open": "20.4550",
"2. high": "20.4700",
"3. low": "20.1400",
"4. close": "20.2600",
"5. volume": "6803155"
},
"2023-02-02": {
"1. open": "20.4650",
"2. high": "20.6600",
"3. low": "20.4500",
"4. close": "20.5200",
"5. volume": "1729817"
},
"2023-02-01": {
"1. open": "20.3900",
"2. high": "20.4650",
"3. low": "20.2350",
"4. close": "20.3650",
"5. volume": "690957"
},
"2023-01-31": {
"1. open": "20.3600",
"2. high": "20.4900",
"3. low": "20.2650",
"4. close": "20.3769",
"5. volume": "704404"
},
"2023-01-30": {
"1. open": "20.3750",
"2. high": "20.4300",
"3. low": "20.1550",
"4. close": "20.3509",
"5. volume": "1364216"
},
"2023-01-27": {
"1. open": "20.3600",
"2. high": "20.3650",
"3. low": "20.2000",
"4. close": "20.3450",
"5. volume": "1118743"
},
"2023-01-26": {
"1. open": "20.3650",
"2. high": "20.4300",
"3. low": "20.2400",
"4. close": "20.3250",
"5. volume": "2746983"
},
"2023-01-25": {
"1. open": "20.1800",
"2. high": "20.3200",
"3. low": "19.9520",
"4. close": "20.2150",
"5. volume": "695142"
},
"2023-01-24": {
"1. open": "20.2800",
"2. high": "20.3200",
"3. low": "20.0100",
"4. close": "20.1250",
"5. volume": "1790255"
},
"2023-01-23": {
"1. open": "20.2700",
"2. high": "20.3900",
"3. low": "20.2150",
"4. close": "20.2901",
"5. volume": "2489999"
},
"2023-01-20": {
"1. open": "20.0200",
"2. high": "20.1750",
"3. low": "19.8000",
"4. close": "20.0950",
"5. volume": "1418149"
},
"2023-01-19": {
"1. open": "20.1600",
"2. high": "20.2500",
"3. low": "20.0600",
"4. close": "20.1650",
"5. volume": "1606733"
},
"2023-01-18": {
"1. open": "20.5600",
"2. high": "20.5850",
"3. low": "20.2250",
"4. close": "20.3150",
"5. volume": "12655912"
},
"2023-01-17": {
"1. open": "20.5500",
"2. high": "20.6550",
"3. low": "20.4550",
"4. close": "20.5464",
"5. volume": "2139377"
},
"2023-01-16": {
"1. open": "20.3750",
"2. high": "20.6000",
"3. low": "20.3550",
"4. close": "20.5206",
"5. volume": "1376259"
},
"2023-01-13": {
"1. open": "20.2950",
"2. high": "20.4700",
"3. low": "20.2950",
"4. close": "20.3450",
"5. volume": "2481454"
},
"2023-01-12": {
"1. open": "20.1750",
"2. high": "20.4400",
"3. low": "20.1100",
"4. close": "20.3450",
"5. volume": "1607275"
},
"2023-01-11": {
"1. o...
curl --location --request GET 'https://zylalabs.com/api/33/stocks+api/98/daily+timeseries' --header 'Authorization: Bearer YOUR_API_KEY'
This endpoint returns weekly time series (last trading day of each week, weekly open, weekly high, weekly low, weekly close, weekly volume) of the global equity specified, covering 20+ years of historical data.
Endpoint JSON example response:
{
"Meta Data": {
"1. Information": "Weekly Prices (open, high, low, close) and Volumes",
"2. Symbol": "AAPL",
"3. Last Refreshed": "2022-07-01",
"4. Time Zone": "US/Eastern"
},
"Weekly Time Series": {
"2022-07-01": {
"1. open": "142.6950",
"2. high": "143.4900",
"3. low": "133.7737",
"4. close": "138.9300",
"5. volume": "373781666"
},
"2022-06-24": {
"1. open": "133.4200",
"2. high": "141.9100",
"3. low": "133.3200",
"4. close": "141.6600",
"5. volume": "315960327"
},
"2022-06-17": {
"1. open": "132.8700",
"2. high": "137.3400",
"3. low": "129.0400",
"4. close": "131.5600",
"5. volume": "541006195"
},
"2022-06-10": {
"1. open": "147.0300",
"2. high": "149.8697",
"3. low": "137.0600",
"4. close": "137.1300",
"5. volume": "354396344"
}
Weekly TimeSeries - Características del Endpoint
Objeto | Descripción |
---|---|
symbol |
[Requerido] The name of the equity of your choice. Ex: AAPL, MSFT. |
datatype |
Opcional By default, datatype=json. Strings "json" and "csv" are accepted with the following specifications: json returns the intraday time series in JSON format; csv returns the time series as a CSV (comma separated value) file. |
{
"Meta Data": {
"1. Information": "Weekly Prices (open, high, low, close) and Volumes",
"2. Symbol": "MSFT",
"3. Last Refreshed": "2023-09-12",
"4. Time Zone": "US/Eastern"
},
"Weekly Time Series": {
"2023-09-12": {
"1. open": "337.2400",
"2. high": "338.4200",
"3. low": "331.4800",
"4. close": "331.7700",
"5. volume": "33744835"
},
"2023-09-08": {
"1. open": "329.0000",
"2. high": "336.1600",
"3. low": "328.6600",
"4. close": "334.2700",
"5. volume": "74018792"
},
"2023-09-01": {
"1. open": "325.6600",
"2. high": "331.9900",
"3. low": "321.7220",
"4. close": "328.6600",
"5. volume": "90668160"
},
"2023-08-25": {
"1. open": "317.9300",
"2. high": "332.9800",
"3. low": "317.0400",
"4. close": "322.9800",
"5. volume": "106273900"
},
"2023-08-18": {
"1. open": "321.3900",
"2. high": "325.0900",
"3. low": "311.5508",
"4. close": "316.4800",
"5. volume": "102513461"
},
"2023-08-11": {
"1. open": "328.3700",
"2. high": "331.1100",
"3. low": "319.2100",
"4. close": "321.0100",
"5. volume": "106911584"
},
"2023-08-04": {
"1. open": "336.9200",
"2. high": "338.5400",
"3. low": "325.9500",
"4. close": "327.7800",
"5. volume": "113690368"
},
"2023-07-28": {
"1. open": "345.8500",
"2. high": "351.8900",
"3. low": "329.0500",
"4. close": "338.3700",
"5. volume": "194860778"
},
"2023-07-21": {
"1. open": "345.6780",
"2. high": "366.7800",
"3. low": "339.8300",
"4. close": "343.7700",
"5. volume": "228153310"
},
"2023-07-14": {
"1. open": "334.6000",
"2. high": "351.4300",
"3. low": "327.0000",
"4. close": "345.2400",
"5. volume": "138404817"
},
"2023-07-07": {
"1. open": "339.1900",
"2. high": "342.9900",
"3. low": "334.7276",
"4. close": "337.2200",
"5. volume": "80091428"
},
"2023-06-30": {
"1. open": "333.7200",
"2. high": "342.7300",
"3. low": "328.4900",
"4. close": "340.5400",
"5. volume": "109964013"
},
"2023-06-23": {
"1. open": "339.3100",
"2. high": "342.0800",
"3. low": "332.0700",
"4. close": "335.0200",
"5. volume": "98196871"
},
"2023-06-16": {
"1. open": "328.5800",
"2. high": "351.4700",
"3. low": "325.1600",
"4. close": "342.3300",
"5. volume": "158712883"
},
"2023-06-09": {
"1. open": "335.2200",
"2. high": "338.5599",
"3. low": "322.5000",
"4. close": "326.7900",
"5. volume": "128227063"
},
"2023-06-02": {
"1. open": "335.2300",
"2. high": "337.5000",
"3. low": "324.7200",
"4. close": "335.4000",
"5. volume": "127697548"
},
"2023-05-26": {
"1. open": "318.6000",
"2. high": "333.4000",
"3. low": "312.6100",
"4. close": "332.8900",
"5. volume": "158230100"
},
"2023-05-19": {
"1. open": "309.0950",
"2. high": "319.0400",
"3. low": "307.5900",
"4. close": "318.3400",
"5. volume": "122204598"
},
"2023-05-12": {
"1. open": "310.1300",
"2. high": "313.0000",
"3. low": "306.0900",
"4. close": "308.9700",
"5. volume": "124192361"
},
"2023-05-05": {
"1. open": "306.9700",
"2. high": "311.9700",
"3. low": "303.4000",
"4. close": "310.6500",
"5. volume": "120776259"
},
"2023-04-28": {
"1. open": "282.0900",
"2. high": "308.9300",
"3. low": "275.3700",
"4. close": "307.2600",
"5. volume": "219796618"
},
"2023-04-21": {
"1. open": "289.9300",
"2. high": "291.7550",
"3. low": "283.0608",
"4. close": "285.7600",
"5. volume": "106024017"
},
"2023-04-14": {
"1. open": "289.2080",
"2. high": "289.9000",
"3. low": "281.6400",
"4. close": "286.1400",
"5. volume": "122993610"
},
"2023-04-06": {
"1. open": "286.5200",
"2. high": "292.0800",
"3. low": "282.0300",
"4. close": "291.6000",
"5. volume": "102542745"
},
"2023-03-31": {
"1. open": "280.5000",
"2. high": "289.2700",
"3. low": "272.0451",
"4. close": "288.3000",
"5. volume": "131625277"
},
"2023-03-24": {
"1. open": "276.9800",
"2. high": "281.0600",
"3. low": "269.5191",
"4. close": "280.5700",
"5. volume": "177709524"
},
"2023-03-17": {
"1. open": "247.4000",
"2. high": "283.3300",
"3. low": "245.7300",
"4. close": "279.4300",
"5. volume": "237347572"
},
"2023-03-10": {
"1. open": "256.4250",
"2. high": "260.1200",
"3. low": "247.6000",
"4. close": "248.5900",
"5. volume": "117910562"
},
"2023-03-03": {
"1. open": "252.4600",
"2. high": "255.6200",
"3. low": "245.6100",
"4. close": "255.2900",
"5. volume": "126840033"
},
"2023-02-24": {
"1. open": "254.4800",
"2. high": "256.8400",
"3. low": "248.1000",
"4. close": "249.2200",
"5. volume": "105098500"
},
"2023-02-17": {
"1. open": "267.6400",
"2. high": "274.9700",
"3. low": "256.0000",
"4. close": "258.0600",
"5. volume": "170244679"
},
"2023-02-10": {
"1. open": "257.4400",
"2. high": "276.7600",
"3. low": "254.7800",
"4. close": "263.1000",
"5. volume": "196239002"
},
"2023-02-03": {
"1. open": "244.5100",
"2. high": "264.6900",
"3. low": "242.2000",
"4. close": "258.3500",
"5. volume": "152686042"
},
"2023-01-27": {
"1. open": "241.1000",
"2. high": "249.8300",
"3. low": "230.9000",
"4. close": "248.1600",
"5. volume": "198648466"
},
"2023-01-20": {
"1. open": "237.9700",
"2. high": "242.3800",
"3. low": "230.6800",
"4. close": "240.2200",
"5. volume": "123872791"
},
"2023-01-13": {
"1. open": "226.4500",
"2. high": "239.9000",
"3. low": "226.4100",
"4. close": "239.2300",
"5. volume": "131675747"
},
"2023-01-06": {
"1. open": "243.0800",
"2. high": "245.7500",
"3. low": "219.3500",
"4. close": "224.9300",
"5. volume": "159562627"
},
"2022-12-30": {
"1. open": "238.7000",
"2. high": "241.9200",
"3. low": "234.1700",
"4. close": "239.8200",
"5. volume": "75854917"
},
"2022-12-23": {
"1. open": "244.8600",
"2. high": "245.6150",
"3. low": "233.8700",
"4. close": "238.7300",
"5. volume": "128396491"
},
"2022-12-16": {
"1. open": "247.4450",
"2. high": "263.9150",
"3. low": "243.5100",
"4. close": "244.6900",
"5. volume": "229942973"
},
"2022-12-09": {
"1. open": "252.0100",
"2. high": "253.8190",
"3. low": "242.2050",
"4. close": "245.4200",
"5. volume": "109602043"
},
"2022-12-02": {
"1. open": "246.0800",
"2. high": "256.1200",
"3. low": "238.2100",
"4. close": "255.0200",
"5. volume": "137930867"
},
"2022-11-25": {
"1. open": "241.4300",
"2. high": "248.7000",
"3. low": "240.7100",
"4. close": "247.4900",
"5. volume": "74769633"
},
"2022-11-18": {
"1. open": "241.9850",
"2. high": "247.0000",
"3. low": "237.6300",
"4. close": "241.2200",
"5. volume": "137343796"
},
"2022-11-11": {
"1. open": "221.9900",
"2. high": "247.9900",
"3. low": "221.2800",
"4. close": "247.1100",
"5. volume": "170431704"
},
"2022-11-04": {
"1. open": "233.7600",
"2. high": "235.7400",
"3. low": "213.4310",
"4. close": "221.3900",
"5. volume": "170779529"
},
"2...
curl --location --request GET 'https://zylalabs.com/api/33/stocks+api/99/weekly+timeseries' --header 'Authorization: Bearer YOUR_API_KEY'
With this endpoint you will be able to return monthly time series (last trading day of each month, monthly open, monthly high, monthly low, monthly close, monthly volume) of the global equity specified, covering 20+ years of historical data.
Example JSON output example:
{
"Meta Data": {
"1. Information": "Monthly Prices (open, high, low, close) and Volumes",
"2. Symbol": "AAPL",
"3. Last Refreshed": "2022-07-01",
"4. Time Zone": "US/Eastern"
},
"Monthly Time Series": {
"2022-07-01": {
"1. open": "136.0400",
"2. high": "139.0400",
"3. low": "135.6600",
"4. close": "138.9300",
"5. volume": "71051552"
},
"2022-06-30": {
"1. open": "149.9000",
"2. high": "151.7400",
"3. low": "129.0400",
"4. close": "136.7200",
"5. volume": "1749297959"
},
"2022-05-31": {
"1. open": "156.7100",
"2. high": "166.4800",
"3. low": "132.6100",
"4. close": "148.8400",
"5. volume": "2400305601"
},
"2022-04-29": {
"1. open": "174.0300",
"2. high": "178.4900",
"3. low": "155.3800",
"4. close": "157.6500",
"5. volume": "1683547838"
},
"2022-03-31": {
"1. open": "164.6950",
"2. high": "179.6100",
"3. low": "150.1000",
"4. close": "174.6100",
"5. volume": "2171827429"
}
Monthly TimeSeries - Características del Endpoint
Objeto | Descripción |
---|---|
symbol |
[Requerido] The equity of your choice. EX: AAPL, MSFT. |
datatype |
Opcional By default, datatype=json. Strings "json" and "csv" are accepted with the following specifications: json returns the intraday time series in JSON format; csv returns the time series as a CSV (comma separated value) file. |
{
"Meta Data": {
"1. Information": "Monthly Prices (open, high, low, close) and Volumes",
"2. Symbol": "AAPL",
"3. Last Refreshed": "2022-07-01",
"4. Time Zone": "US/Eastern"
},
"Monthly Time Series": {
"2022-07-01": {
"1. open": "136.0400",
"2. high": "139.0400",
"3. low": "135.6600",
"4. close": "138.9300",
"5. volume": "71051552"
},
"2022-06-30": {
"1. open": "149.9000",
"2. high": "151.7400",
"3. low": "129.0400",
"4. close": "136.7200",
"5. volume": "1749297959"
},
"2022-05-31": {
"1. open": "156.7100",
"2. high": "166.4800",
"3. low": "132.6100",
"4. close": "148.8400",
"5. volume": "2400305601"
},
"2022-04-29": {
"1. open": "174.0300",
"2. high": "178.4900",
"3. low": "155.3800",
"4. close": "157.6500",
"5. volume": "1683547838"
},
"2022-03-31": {
"1. open": "164.6950",
"2. high": "179.6100",
"3. low": "150.1000",
"4. close": "174.6100",
"5. volume": "2171827429"
},
"2022-02-28": {
"1. open": "174.0100",
"2. high": "176.6500",
"3. low": "152.0000",
"4. close": "165.1200",
"5. volume": "1628570227"
},
"2022-01-31": {
"1. open": "177.8300",
"2. high": "182.9400",
"3. low": "154.7000",
"4. close": "174.7800",
"5. volume": "2106513962"
},
"2021-12-31": {
"1. open": "167.4800",
"2. high": "182.1300",
"3. low": "157.8000",
"4. close": "177.5700",
"5. volume": "2443227128"
},
"2021-11-30": {
"1. open": "148.9850",
"2. high": "165.7000",
"3. low": "147.4800",
"4. close": "165.3000",
"5. volume": "1688864233"
},
"2021-10-29": {
"1. open": "141.9000",
"2. high": "153.1650",
"3. low": "138.2700",
"4. close": "149.8000",
"5. volume": "1565079040"
},
"2021-09-30": {
"1. open": "152.8300",
"2. high": "157.2600",
"3. low": "141.2700",
"4. close": "141.5000",
"5. volume": "1797948421"
},
"2021-08-31": {
"1. open": "146.3600",
"2. high": "153.4900",
"3. low": "144.5000",
"4. close": "151.8300",
"5. volume": "1462773381"
},
"2021-07-30": {
"1. open": "136.6000",
"2. high": "150.0000",
"3. low": "135.7600",
"4. close": "145.8600",
"5. volume": "1916751489"
},
"2021-06-30": {
"1. open": "125.0800",
"2. high": "137.4100",
"3. low": "123.1300",
"4. close": "136.9600",
"5. volume": "1606114354"
},
"2021-05-28": {
"1. open": "132.0400",
"2. high": "134.0700",
"3. low": "122.2500",
"4. close": "124.6100",
"5. volume": "1711935110"
},
"2021-04-30": {
"1. open": "123.6600",
"2. high": "137.0700",
"3. low": "122.4900",
"4. close": "131.4600",
"5. volume": "1889956694"
},
"2021-03-31": {
"1. open": "123.7500",
"2. high": "128.7200",
"3. low": "116.2100",
"4. close": "122.1500",
"5. volume": "2650845211"
},
"2021-02-26": {
"1. open": "133.7500",
"2. high": "137.8770",
"3. low": "118.3900",
"4. close": "121.2600",
"5. volume": "1825486961"
},
"2021-01-29": {
"1. open": "133.5200",
"2. high": "145.0900",
"3. low": "126.3820",
"4. close": "131.9600",
"5. volume": "2239366098"
},
"2020-12-31": {
"1. open": "121.0100",
"2. high": "138.7890",
"3. low": "120.0100",
"4. close": "132.6900",
"5. volume": "2319687808"
},
"2020-11-30": {
"1. open": "109.1100",
"2. high": "121.9900",
"3. low": "107.3200",
"4. close": "119.0500",
"5. volume": "2122724412"
},
"2020-10-30": {
"1. open": "117.6400",
"2. high": "125.3900",
"3. low": "107.7200",
"4. close": "108.8600",
"5. volume": "2895317580"
},
"2020-09-30": {
"1. open": "132.7600",
"2. high": "137.9800",
"3. low": "103.1000",
"4. close": "115.8100",
"5. volume": "3886793083"
},
"2020-08-31": {
"1. open": "432.8000",
"2. high": "515.1400",
"3. low": "126.0000",
"4. close": "129.0400",
"5. volume": "1184207050"
},
"2020-07-31": {
"1. open": "365.1200",
"2. high": "425.6600",
"3. low": "356.5800",
"4. close": "425.0400",
"5. volume": "755162226"
},
"2020-06-30": {
"1. open": "317.7500",
"2. high": "372.3800",
"3. low": "317.2100",
"4. close": "364.8000",
"5. volume": "810900890"
},
"2020-05-29": {
"1. open": "286.2500",
"2. high": "324.2400",
"3. low": "285.8500",
"4. close": "317.9400",
"5. volume": "701660022"
},
"2020-04-30": {
"1. open": "246.5000",
"2. high": "294.5300",
"3. low": "236.9000",
"4. close": "293.8000",
"5. volume": "816530808"
},
"2020-03-31": {
"1. open": "282.2800",
"2. high": "304.0000",
"3. low": "212.6100",
"4. close": "254.2900",
"5. volume": "1570331732"
},
"2020-02-28": {
"1. open": "304.3000",
"2. high": "327.2200",
"3. low": "256.3700",
"4. close": "273.3600",
"5. volume": "755223231"
},
"2020-01-31": {
"1. open": "296.2400",
"2. high": "327.8500",
"3. low": "292.7500",
"4. close": "309.5100",
"5. volume": "734044103"
},
"2019-12-31": {
"1. open": "267.2700",
"2. high": "293.9700",
"3. low": "256.2900",
"4. close": "293.6500",
"5. volume": "598871365"
},
"2019-11-29": {
"1. open": "249.5400",
"2. high": "268.0000",
"3. low": "249.1600",
"4. close": "267.2500",
"5. volume": "448922253"
},
"2019-10-31": {
"1. open": "225.0700",
"2. high": "249.7500",
"3. low": "215.1300",
"4. close": "248.7600",
"5. volume": "621478768"
},
"2019-09-30": {
"1. open": "206.4300",
"2. high": "226.4200",
"3. low": "204.2200",
"4. close": "223.9700",
"5. volume": "547408488"
},
"2019-08-30": {
"1. open": "213.9000",
"2. high": "218.0300",
"3. low": "192.5800",
"4. close": "208.7400",
"5. volume": "683515746"
},
"2019-07-31": {
"1. open": "203.1700",
"2. high": "221.3700",
"3. low": "198.4100",
"4. close": "213.0400",
"5. volume": "473957094"
},
"2019-06-28": {
"1. open": "175.6000",
"2. high": "201.5700",
"3. low": "170.2700",
"4. close": "197.9200",
"5. volume": "515218768"
},
"2019-05-31": {
"1. open": "209.8800",
"2. high": "215.3100",
"3. low": "174.9900",
"4. close": "175.0700",
"5. volume": "739456573"
},
"2019-04-30": {
"1. open": "191.6400",
"2. high": "208.4800",
"3. low": "188.3800",
"4. close": "200.6700",
"5. volume": "506117812"
},
"2019-03-29": {
"1. open": "174.2800",
"2. high": "197.6900",
"3. low": "169.5000",
"4. close": "189.9500",
"5. volume": "650981384"
},
"2019-02-28": {
"1. open": "166.9600",
"2. high": "175.8700",
"3. low": "165.9300",
"4. close": "173.1500",
"5. volume": "472540723"
},
"2019-01-31": {
"1. open": "154.8900",
"2. high": "169.0000",
"3. low": "142.0000",
"4. close": "166.4400",
"5. volume": "828099179"
},
"2018-12-31": {
"1. open": "184.4600",
"2. high": "184.9400",
"3. low": "146.5900",
"4. close": "157.7400",
"5. volume": "898917007"
},
"2018-11-30": {
"1. open": "219.0500",
"2. high": "222.3600",
"3. low": "170.2600",
"4. close": "178.5800",
"5. volume": "961321947"
},
"2018-10-31": {
"1. open": "227.9500",
"2. high": "233.4700",
"3. low": "206.0900",
"4. close": "218.8600",
"5. volume": "...
curl --location --request GET 'https://zylalabs.com/api/33/stocks+api/100/monthly+timeseries' --header 'Authorization: Bearer YOUR_API_KEY'
If you are looking for some specific symbols or companies, the Search Endpoint will help you out. It will return the best-matching symbols and market information based on the keyword you choose. The search results also contain match scores that provide you with the full flexibility to develop your own search and filtering logic.
What was the symbol for Apple stocks? Amazon? Find out with this endpoint.
Example JSON output response:
{
"bestMatches": [
{
"1. symbol": "AMZN",
"2. name": "Amazon.com Inc",
"3. type": "Equity",
"4. region": "United States",
"5. marketOpen": "09:30",
"6. marketClose": "16:00",
"7. timezone": "UTC-04",
"8. currency": "USD",
"9. matchScore": "0.8000"
},
{
"1. symbol": "AMZ.DEX",
"2. name": "Amazon.com Inc",
"3. type": "Equity",
"4. region": "XETRA",
"5. marketOpen": "08:00",
"6. marketClose": "20:00",
"7. timezone": "UTC+02",
"8. currency": "EUR",
"9. matchScore": "0.6000"
},
{
"1. symbol": "AMZ.FRK",
"2. name": "Amazon.com Inc",
"3. type": "Equity",
"4. region": "Frankfurt",
"5. marketOpen": "08:00",
"6. marketClose": "20:00",
"7. timezone": "UTC+02",
"8. currency": "EUR",
"9. matchScore": "0.6000"
}
Search Symbol Endpoint - Características del Endpoint
Objeto | Descripción |
---|---|
keywords |
[Requerido] A text string. You can use the name of the company you want to check stocks from. Ex: amazon. |
datatype |
Opcional Strings "json" and "csv" are accepted with the following specifications: json returns the search results in JSON format; csv returns the search results as a CSV (comma separated value) file. |
{
"bestMatches": [
{
"1. symbol": "AMZN",
"2. name": "Amazon.com Inc",
"3. type": "Equity",
"4. region": "United States",
"5. marketOpen": "09:30",
"6. marketClose": "16:00",
"7. timezone": "UTC-04",
"8. currency": "USD",
"9. matchScore": "0.8000"
},
{
"1. symbol": "AMZ.DEX",
"2. name": "Amazon.com Inc",
"3. type": "Equity",
"4. region": "XETRA",
"5. marketOpen": "08:00",
"6. marketClose": "20:00",
"7. timezone": "UTC+02",
"8. currency": "EUR",
"9. matchScore": "0.6000"
},
{
"1. symbol": "AMZ.FRK",
"2. name": "Amazon.com Inc",
"3. type": "Equity",
"4. region": "Frankfurt",
"5. marketOpen": "08:00",
"6. marketClose": "20:00",
"7. timezone": "UTC+02",
"8. currency": "EUR",
"9. matchScore": "0.6000"
},
{
"1. symbol": "AMZO34.SAO",
"2. name": "Amazon.com Inc",
"3. type": "Equity",
"4. region": "Brazil/Sao Paolo",
"5. marketOpen": "10:00",
"6. marketClose": "17:30",
"7. timezone": "UTC-03",
"8. currency": "BRL",
"9. matchScore": "0.6000"
},
{
"1. symbol": "0R1O.LON",
"2. name": "Amazon.com Inc.",
"3. type": "Equity",
"4. region": "United Kingdom",
"5. marketOpen": "08:00",
"6. marketClose": "16:30",
"7. timezone": "UTC+01",
"8. currency": "USD",
"9. matchScore": "0.5714"
},
{
"1. symbol": "AMZ1.FRK",
"2. name": "AMAZON.COM INC.CDR DL-01",
"3. type": "Equity",
"4. region": "Frankfurt",
"5. marketOpen": "08:00",
"6. marketClose": "20:00",
"7. timezone": "UTC+02",
"8. currency": "EUR",
"9. matchScore": "0.5000"
},
{
"1. symbol": "AZFL",
"2. name": "Amazonas Florestal Ltd",
"3. type": "Equity",
"4. region": "United States",
"5. marketOpen": "09:30",
"6. marketClose": "16:00",
"7. timezone": "UTC-04",
"8. currency": "USD",
"9. matchScore": "0.4286"
}
]
}
curl --location --request GET 'https://zylalabs.com/api/33/stocks+api/101/search+symbol+endpoint' --header 'Authorization: Bearer YOUR_API_KEY'
Encabezado | Descripción |
---|---|
Autorización
|
[Requerido] Debería ser Bearer access_key . Consulta "Tu Clave de Acceso a la API" arriba cuando estés suscrito. |
Sin compromiso a largo plazo. Mejora, reduce o cancela en cualquier momento. La Prueba Gratuita incluye hasta 50 solicitudes.
Each endpoint returns specific stock-related data. The Intraday Information endpoint provides open, high, low, close prices, and volume for selected time intervals. The Daily, Weekly, and Monthly TimeSeries endpoints return similar data but aggregated over daily, weekly, or monthly periods. The Search Symbol Endpoint returns matching stock symbols and related market information.
Key fields include "open," "high," "low," "close," and "volume" for price data, along with "symbol," "last refreshed," and "time zone" for metadata. For the Search Symbol Endpoint, fields include "symbol," "name," "type," "region," and "match score."
The response data is structured in JSON format. Each endpoint's response contains a "Meta Data" section with general information, followed by a time series section (e.g., "Time Series (Daily)") that lists date-specific data points in a nested format.
The Intraday Information endpoint provides real-time price data for specified intervals. The Daily, Weekly, and Monthly TimeSeries endpoints offer historical price data over 20+ years. The Search Symbol Endpoint provides stock symbols and market details based on user queries.
Parameters vary by endpoint. For Intraday Information, you can specify the stock symbol and interval (1, 5, 15, 30, or 60 minutes). Daily, Weekly, and Monthly endpoints require only the stock symbol. The Search Symbol Endpoint accepts a keyword for searching stock symbols.
Users can customize requests by selecting specific stock symbols and defining intervals for intraday data. For the Search Symbol Endpoint, users can input keywords to filter results based on company names or symbols, allowing for tailored searches.
Typical use cases include building stock price tracking applications, conducting market analysis, and creating financial charts. Developers can leverage historical data for trend analysis and forecasting, making it suitable for investment strategies.
Data accuracy is maintained through partnerships with reliable financial data providers. Regular updates and quality checks ensure that the information reflects real-time market conditions and historical accuracy, providing users with trustworthy data for analysis.
Zyla API Hub es como una gran tienda de APIs, donde puedes encontrar miles de ellas en un solo lugar. También ofrecemos soporte dedicado y monitoreo en tiempo real de todas las APIs. Una vez que te registres, puedes elegir qué APIs quieres usar. Solo recuerda que cada API necesita su propia suscripción. Pero si te suscribes a varias, usarás la misma clave para todas, lo que hace todo más fácil para ti.
Los precios se muestran en USD (dólar estadounidense), EUR (euro), CAD (dólar canadiense), AUD (dólar australiano) y GBP (libra esterlina). Aceptamos todas las principales tarjetas de débito y crédito. Nuestro sistema de pago utiliza la última tecnología de seguridad y está respaldado por Stripe, una de las compañías de pago más confiables del mundo. Si tienes algún problema para pagar con tarjeta, contáctanos en [email protected]
Además, si ya tienes una suscripción activa en cualquiera de estas monedas (USD, EUR, CAD, AUD, GBP), esa moneda se mantendrá para suscripciones posteriores. Puedes cambiar la moneda en cualquier momento siempre que no tengas suscripciones activas.
La moneda local que aparece en la página de precios se basa en el país de tu dirección IP y se proporciona solo como referencia. Los precios reales están en USD (dólar estadounidense). Cuando realices un pago, el cargo aparecerá en tu estado de cuenta en USD, incluso si ves el monto equivalente en tu moneda local en nuestro sitio web. Esto significa que no puedes pagar directamente en tu moneda local.
Ocasionalmente, un banco puede rechazar el cargo debido a sus configuraciones de protección contra fraude. Te sugerimos comunicarte con tu banco primero para verificar si están bloqueando nuestros cargos. También puedes acceder al Portal de Facturación y cambiar la tarjeta asociada para realizar el pago. Si esto no funciona y necesitas más ayuda, por favor contacta a nuestro equipo en [email protected]
Los precios se determinan mediante una suscripción recurrente mensual o anual, dependiendo del plan elegido.
Las llamadas a la API se descuentan de tu plan en base a solicitudes exitosas. Cada plan incluye una cantidad específica de llamadas que puedes realizar por mes. Solo las llamadas exitosas, indicadas por una respuesta con estado 200, se contarán en tu total. Esto asegura que las solicitudes fallidas o incompletas no afecten tu cuota mensual.
Zyla API Hub funciona con un sistema de suscripción mensual recurrente. Tu ciclo de facturación comenzará el día en que compres uno de los planes de pago, y se renovará el mismo día del mes siguiente. Así que recuerda cancelar tu suscripción antes si quieres evitar futuros cargos.
Para actualizar tu plan de suscripción actual, simplemente ve a la página de precios de la API y selecciona el plan al que deseas actualizarte. La actualización será instantánea, permitiéndote disfrutar inmediatamente de las funciones del nuevo plan. Ten en cuenta que las llamadas restantes de tu plan anterior no se transferirán al nuevo plan, por lo que debes considerar esto al actualizar. Se te cobrará el monto total del nuevo plan.
Para verificar cuántas llamadas a la API te quedan en el mes actual, revisa el campo 'X-Zyla-API-Calls-Monthly-Remaining' en el encabezado de la respuesta. Por ejemplo, si tu plan permite 1,000 solicitudes por mes y has usado 100, este campo mostrará 900 llamadas restantes.
Para ver el número máximo de solicitudes a la API que permite tu plan, revisa el encabezado de la respuesta 'X-Zyla-RateLimit-Limit'. Por ejemplo, si tu plan incluye 1,000 solicitudes por mes, este encabezado mostrará 1,000.
El encabezado 'X-Zyla-RateLimit-Reset' muestra el número de segundos hasta que tu límite se restablezca. Esto te indica cuándo tu conteo de solicitudes se reiniciará. Por ejemplo, si muestra 3,600, significa que faltan 3,600 segundos para que el límite se restablezca.
Sí, puedes cancelar tu plan en cualquier momento desde tu cuenta, seleccionando la opción de cancelación en la página de Facturación. Ten en cuenta que las actualizaciones, degradaciones y cancelaciones tienen efecto inmediato. Además, al cancelar ya no tendrás acceso al servicio, incluso si te quedaban llamadas en tu cuota.
Puedes contactarnos a través de nuestro canal de chat para recibir asistencia inmediata. Siempre estamos en línea de 8 a. m. a 5 p. m. (EST). Si nos contactas fuera de ese horario, te responderemos lo antes posible. Además, puedes escribirnos por correo electrónico a [email protected]
Para darte la oportunidad de probar nuestras APIs sin compromiso, ofrecemos una prueba gratuita de 7 días que te permite realizar hasta 50 llamadas a la API sin costo. Esta prueba solo se puede usar una vez, por lo que recomendamos aplicarla a la API que más te interese. Aunque la mayoría de nuestras APIs ofrecen prueba gratuita, algunas pueden no hacerlo. La prueba finaliza después de 7 días o cuando realices 50 solicitudes, lo que ocurra primero. Si alcanzas el límite de 50 solicitudes durante la prueba, deberás "Iniciar tu Plan de Pago" para continuar haciendo solicitudes. Puedes encontrar el botón "Iniciar tu Plan de Pago" en tu perfil bajo Suscripción -> Elige la API a la que estás suscrito -> Pestaña de Precios. Alternativamente, si no cancelas tu suscripción antes del día 7, tu prueba gratuita finalizará y tu plan se cobrará automáticamente, otorgándote acceso a todas las llamadas a la API especificadas en tu plan. Ten esto en cuenta para evitar cargos no deseados.
Después de 7 días, se te cobrará el monto total del plan al que estabas suscrito durante la prueba. Por lo tanto, es importante cancelar antes de que finalice el periodo de prueba. No se aceptan solicitudes de reembolso por olvidar cancelar a tiempo.
Cuando te suscribes a una prueba gratuita de una API, puedes realizar hasta 50 llamadas. Si deseas realizar más llamadas después de este límite, la API te pedirá que "Inicies tu Plan de Pago". Puedes encontrar el botón "Iniciar tu Plan de Pago" en tu perfil bajo Suscripción -> Elige la API a la que estás suscrito -> Pestaña de Precios.
Las Órdenes de Pago se procesan entre el día 20 y el 30 de cada mes. Si envías tu solicitud antes del día 20, tu pago será procesado dentro de ese período.
Nivel de Servicio:
100%
Tiempo de Respuesta:
943ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
498ms
Nivel de Servicio:
86%
Tiempo de Respuesta:
469ms
Nivel de Servicio:
99%
Tiempo de Respuesta:
902ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
9.885ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
526ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
5.224ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
3.064ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
8.944ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
1.606ms