Skip to content

Obtener historial

GET
/api/v1/{currency}/history

Obtiene el historial de precios de un monitor específico en una página.

Autorizaciones

Parámetros

Path Parameters

currency*

La moneda en la que se expresarán los precios (dollar, euro).

Tipostring
Requerido
Enumdollar, euro
Ejemplodollar

Query Parameters

page*

La página de la que se quiere obtener la información.

Tipostring
Requerido
monitor*

El monitor específico del que se quiere obtener la información.

Tipostring
Requerido
format_date

Convertir un formato de fecha específico. (iso, timestamp, default).

Tipostring
Enumdefault, iso, timestamp
Ejemplodefault
start_date*

Fecha de inicio del historial.

Tipostring
Requerido
end_date*

Fecha de fin del historial.

Tipostring
Requerido

Respuestas

La información de los monitores de la página.
JSON
{
"datetime": "string",
"history": [
{
"price": 0,
"price_high": 0,
"price_low": 0,
"last_update": "string"
}
]
}

Ejemplos

cURL
curl -X GET \
'https://pydolarve.org/api/v1/dollar/history?format_date=default' \
 -H "Content-Type: application/json"
JavaScript
fetch('https://pydolarve.org/api/v1/dollar/history?format_date=default', {headers:{'Content-Type':'application/json'}})
  .then(response => response.json())
  .then(data => console.log(data));
PHP
<?php
$url = 'https://pydolarve.org/api/v1/dollar/history';
$method = 'GET';
$headers = [
    'Content-Type' => 'application/json',
];
$query = http_build_query([
    'format_date' => 'default',
]);

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url . '?' . $query);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);

$response = curl_exec($ch);
curl_close($ch);

echo $response;
?>
Python
import requests

url = 'https://pydolarve.org/api/v1/dollar/history'
params = {
    'format_date': 'default'
}
headers = {
    'Content-Type': 'application/json'
}

response = requests.get(url, params=params, headers=headers)
print(response.json())
Powered by VitePress OpenAPI