Skip to content

Renta fija

GET
/v1/finanzas/fci/rentaFija/{fecha}

Devuelve los valores de Renta Fija de los Fondos Comunes de Inversión en la fecha indicada (en formato YYYY/MM/DD).

También se puede consultar el ultimo y penultimo día con valores utilizando los endpoints:

  • /v1/finanzas/fci/rentaFija/ultimo
  • /v1/finanzas/fci/rentaFija/penultimo

Parámetros

Path Parameters

fecha*

Fecha de consulta

Tipostring
Requerido
Ejemploultimo

Respuestas

Devuelve una lista de Fondos Comunes de Inversión
application/json
JSON
[
{
"fondo": "string",
"fecha": "string",
"vcp": 0,
"ccp": 0,
"patrimonio": 0,
"horizonte": "string"
}
]

Ejemplos

cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/fci/rentaFija/ultimo' \
 -H "Content-Type: application/json"
JavaScript
fetch('https://api.argentinadatos.com/v1/finanzas/fci/rentaFija/ultimo', {headers:{'Content-Type':'application/json'}})
  .then(response => response.json())
  .then(data => console.log(data));
PHP
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/fci/rentaFija/ultimo';
$method = 'GET';
$headers = [
    'Content-Type' => 'application/json',
];

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
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://api.argentinadatos.com/v1/finanzas/fci/rentaFija/ultimo'

headers = {
    'Content-Type': 'application/json'
}

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