Python API for Banco Central de la República Argentina (BCRA)
Project description
bcraapi: Python API for BCRA (Banco Central de la República Argentina)
bcraapi is a Python wrapper for BCRA APIs provided by Banco Central de la República Argentina itself. It makes use of requests and pandas and returns the data in a pandas DataFrame.
The BCRA API does not require tokens or registration, so do not hesitate to use it.
Installation
pip install bcraapi
APIs of the BCRA
-
Estadísticas cambiarias v1.0
You will be able to access to resources related to exchange rate information published by the BCRA.
-
Cheques denunciados v1.0
You will be able to consult reported, lost, stolen or adulterated checks. The information available here is provided by the financial entities operating in the country and is published without alterations.
-
Estadísticas monetarias y principales variables v4.0
You will be able to access resources related to the main and monetary variables information published by the BCRA.
-
Central de Deudores v1.0
You will be able to access resources related to the main variables information published by the BCRA.
API Cheques denunciados v1.0
Entidades
Method to obtain the list of all the banking entities in the country with their respective entity code.
from bcraapi import cheques
df = cheques.entidades()
Returns
DataFrame with the list of all the banking entities in the country with their respective entity code.
Denunciados
Method to know if a check from a certain entity is registered as reported or not.
from bcraapi import cheques
df = cheques.denunciados(codigo_entidad=11, numero_cheque=20377516)
Args
| Parameter | Type | Description |
|---|---|---|
codigo_entidad |
int |
ID of the financial entity. It can be queried via entidades(). |
numero_cheque |
int |
Corresponds to the check number to be consulted. |
Returns
DataFrame with the result if a check is registered as reported or not.
API Estadísticas v4.0
Metodología
Method for obtaining the methodologies corresponding to each reported variable published by the BCRA.
from bcraapi import estadisticas
df = estadisticas.metodologia()
Args
| Parameter | Type | Description |
|---|---|---|
idvariable |
int |
ID of the desired variable. |
Keyword Args
| Parameter | Type | Description |
|---|---|---|
desde |
str |
The start date of the range to be queried, it must be in the format YYYY-MM-DD. |
hasta |
str |
The end date of the range to be queried, it must be in the format YYYY-MM-DD. |
offset |
int |
Records to discard for paging. Default: 0. |
limit |
int |
Records to be returned by the service. The maximum value is 3000. Default: 1000. |
Returns
DataFrame with the methodology corresponding to the reported variable.
Datos de Variables Monetarias
Method for obtaining the evolution of values for the monetary variable within a date range.
from bcraapi import estadisticas
df = estadisticas.datos_monetarias(id_variable=1, desde="2024-02-01", hasta="2024-02-05", limit=1000, offset=0)
Args
| Parameter | Type | Description |
|---|---|---|
id_variable |
int |
ID of the desired variable. Required |
Keyword Args
| Parameter | Type | Description |
|---|---|---|
desde |
str |
The start date of the range to be queried, it must be in the format YYYY-MM-DD. |
hasta |
str |
The end date of the range to be queried, it must be in the format YYYY-MM-DD. |
offset |
int |
Records to discard for paging. Default: 0. |
limit |
int |
Records to be returned by the service. The maximum value is 3000. Default: 1000. |
Returns
DataFrame with the values for the selected variable and date range.
Monetarias
Method for obtaining a list of all monetary variables published by the BCRA.
from bcraapi import estadisticas
df = estadisticas.monetarias(id_variable=1, limit=1000, offset=0)
Keyword Args
| Parameter | Type | Description |
|---|---|---|
id_variable |
int |
Optional. ID of the desired variable. |
categoria |
str |
Indicates the classification of the monetary variable. It is not necessary to enter the entire text. |
tipo_serie |
str |
It corresponds to the economic characterization of the variable. It is not necessary to enter the entire text. |
periodicidad |
str |
Frequency: daily D, monthly M, quarterly T (or Q). |
unidad_expresion |
str |
Unit of measurement for the economic variable. It is not necessary to enter the entire text. |
offset |
int |
Records to discard for paging. Default: 0. |
limit |
int |
Records to be returned by the service. The maximum value is 3000. Default: 1000. |
Returns
DataFrame with the values for the selected variable and date range.
API Estadísticas Cambiarias v1.0
Maestro de monedas
Method to obtain the list of all ISO currencies in force, with their respective denominations. denomination.
from bcraapi import estadisticascambiarias
df = estadisticascambiarias.maestros_divisas()
Returns
DataFrame with the list of currencies of the BCRA.
Cotizaciones por fecha
Method to obtain the list of all current foreign exchange rates published by the BCRA for a given date (yyyy-MM-dd). BCRA for a given date. If no date is entered, the last existing quote will be returned. the last existing quotation will be returned.
from bcraapi import estadisticascambiarias
df = estadisticascambiarias.cotizaciones(fecha="2024-06-12")
Args
| Parameter | Type | Description |
|---|---|---|
fecha |
str |
Date of the data to be consulted, it must have the format YYYY-MM-DD. |
Returns
DataFrame with the values for the selected date.
Evolución de moneda
Method to obtain the price evolution of a currency (ISO) in a particular date range. If the date from and date to parameters are not entered, the last existing quote will be returned. the last existing quote will be returned.
from bcraapi import estadisticascambiarias
df = estadisticascambiarias.cotizaciones_moneda(moneda="USD")
Args
| Parameter | Type | Description |
|---|---|---|
moneda |
str |
ISO currency. This parameter is required |
fecha_desde |
str |
The start date of the range to be queried, it must be in the format YYYY-MM-DD. |
fecha_hasta |
str |
The end date of the range to be queried, it must be in the format YYYY-MM-DD. |
limit |
int |
Maximum amount to be returned per application. Must be greater than 10 and less than 1000. |
ofset |
int |
Exclude from the answer the first N elements of the contributions to be refunded.. |
Returns
Datarame with the evolution of the exchange rate of a currency.
API Central de Deudores v1.0
Deudas
Method to obtain the credit situation, amount of debt, days in arrears and observations corresponding to the last period reported by the entities to the BCRA.
from bcraapi import centraldeudores
df = centraldeudores.deudas(30500010912)
Args
| Parameter | Type | Description |
|---|---|---|
identificacion |
str |
Corresponds to CUIT/CUIL/CDI, it must be 11 characters long. |
Returns
DataFrame with the credit situation, amount of debt, days in arrears and observations corresponding to the last period reported by the entities to the BCRA.
Deudas Históricas
Method to obtain the credit situation for the last 24 months.
from bcraapi import centraldeudores
df = centraldeudores.deudas_historicas(30500010912)
Args
| Parameter | Type | Description |
|---|---|---|
identificacion |
str |
Corresponds to CUIT/CUIL/CDI, it must be 11 characters long. |
Returns
DataFrame with the credit situation for the last 24 months.
Cheques Rechazados
Method to obtain the rejected checks with their corresponding reasons.
from bcraapi import centraldeudores
df = centraldeudores.cheques_rechazados(30717283186)
Args
| Parameter | Type | Description |
|---|---|---|
identificacion |
str |
Corresponds to CUIT/CUIL/CDI, it must be 11 characters long. |
Returns
DataFrame with the rejected checks with their corresponding reasons.
API Documentation:
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bcraapi-3.0.0.tar.gz.
File metadata
- Download URL: bcraapi-3.0.0.tar.gz
- Upload date:
- Size: 26.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d19fab81564df7de3a9406de7e4b9a1e42ae581b4d2998ad3b1ff00995b5e2c9
|
|
| MD5 |
92d3cd385a2ac5ed5227b6867f9de3ed
|
|
| BLAKE2b-256 |
661b01881a179c5179e06530436efb46e7f6f563ada227d076baa7039add235e
|
Provenance
The following attestation bundles were made for bcraapi-3.0.0.tar.gz:
Publisher:
python-publish.yml on Jaldekoa/BCRA-Wrapper
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
bcraapi-3.0.0.tar.gz -
Subject digest:
d19fab81564df7de3a9406de7e4b9a1e42ae581b4d2998ad3b1ff00995b5e2c9 - Sigstore transparency entry: 451098945
- Sigstore integration time:
-
Permalink:
Jaldekoa/BCRA-Wrapper@9b18d8daee883154284d29c6e8e73387b2568f88 -
Branch / Tag:
refs/tags/v3.0.0 - Owner: https://github.com/Jaldekoa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@9b18d8daee883154284d29c6e8e73387b2568f88 -
Trigger Event:
release
-
Statement type:
File details
Details for the file bcraapi-3.0.0-py3-none-any.whl.
File metadata
- Download URL: bcraapi-3.0.0-py3-none-any.whl
- Upload date:
- Size: 24.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7f2c723261b06bfb82ef50e26d7c71b57f7cfe917384b506728fd60e823cc42
|
|
| MD5 |
058981a29ae5a505c47fe6e908b4ac00
|
|
| BLAKE2b-256 |
0af3fb827cd9843bfe940e24d40745e04e2407b7d85ea278203e9a7b0419b6b1
|
Provenance
The following attestation bundles were made for bcraapi-3.0.0-py3-none-any.whl:
Publisher:
python-publish.yml on Jaldekoa/BCRA-Wrapper
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
bcraapi-3.0.0-py3-none-any.whl -
Subject digest:
f7f2c723261b06bfb82ef50e26d7c71b57f7cfe917384b506728fd60e823cc42 - Sigstore transparency entry: 451098946
- Sigstore integration time:
-
Permalink:
Jaldekoa/BCRA-Wrapper@9b18d8daee883154284d29c6e8e73387b2568f88 -
Branch / Tag:
refs/tags/v3.0.0 - Owner: https://github.com/Jaldekoa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@9b18d8daee883154284d29c6e8e73387b2568f88 -
Trigger Event:
release
-
Statement type: