Skip to content

Riesgo país (último)

GET
/v1/finanzas/indices/riesgo-pais/ultimo

Devuelve el último valor de riesgo país.

Respuestas

Devuelve el último valor de riesgo país
JSON
{
"fecha": "string",
"valor": 0
}

Ejemplos

cURL
curl -X GET https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais/ultimo
JavaScript
fetch("https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais/ultimo")
  .then(response => response.json())
  .then(data => console.log(data));
PHP
file_get_contents("https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais/ultimo");
Python
import requests
response = requests.get("https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais/ultimo")
print(response.json())
Powered by VitePress OpenAPI