Skip to main content
GET
/
api
/
v1
/
stocks
/
instruments
/
{symbol}
cURL
curl --request GET \
  --url https://api.doctacapital.com.ar/api/v1/stocks/instruments/{symbol} \
  --header 'Authorization: Bearer <token>'
{
  "ticker": "<string>",
  "name": "<string>",
  "asset_class": "<string>",
  "sub_asset_class": "<string>",
  "sector": "<string>",
  "issuer": "<string>",
  "law": "<string>"
}
Devuelve los datos del instrumento de acción especificado.

Parámetros de ruta

symbol
string
required
Símbolo de la acción (ej., “GGAL”).

Ejemplo

curl -X GET "https://api.doctacapital.com.ar/api/v1/stocks/instruments/GGAL/" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

symbol
string
required

Response

200 - application/json

Detalle acción

ticker
string
required

Símbolo del instrumento

name
string
required

Nombre del instrumento

asset_class
string
required

Clase de activo

sub_asset_class
string | null
required

Sub-clase de activo

sector
string | null
required
issuer
string | null
required
law
string | null
required