Skip to content

Obtener monitores

GET
/api/v1/{currency}

Obtiene información de un monitor específico o de todos los monitores en una página.

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
monitor

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

Tipostring
format_date

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

Tipostring
Enumdefault, iso, timestamp
Ejemplodefault

Respuestas

La información de los monitores de la página.
JSON
{
"datetime": {
"date": "string",
"time": "string"
},
"monitors": {
"change": 0,
"color": "string",
"image": "string",
"last_update": "string",
"percent": 0,
"price": 0,
"price_old": 0,
"symbol": "string",
"title": "string"
}
}

Ejemplos

cURL
curl -X GET \
'https://pydolarve.org/api/v1/dollar?format_date=default' \
 -H "Content-Type: application/json"
JavaScript
fetch('https://pydolarve.org/api/v1/dollar?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';
$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'
params = {
    'format_date': 'default'
}
headers = {
    'Content-Type': 'application/json'
}

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