Emissões

Listagem de emissões

Lista emissões

GEThttps://operacoes.vert-capital.com/api/public/{version}/emission/
Path parameters
version*string
Query parameters
Response
Body
count*integer
nextnullable string (uri)
previousnullable string (uri)
results*array of EmissionSerializerV1 (object)
Request
const response = await fetch('https://operacoes.vert-capital.com/api/public/{version}/emission/', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "next": "https://example.com",
  "previous": "https://example.com",
  "results": [
    {
      "number": "text",
      "date": "2024-09-16",
      "series": "text",
      "all_series_status": "text",
      "customer": [
        {
          "name": "text",
          "person_type": "legal_person",
          "nickname": "text",
          "document": "text",
          "state_registration": "text",
          "city_registration": "text",
          "participations": []
        }
      ],
      "concentration": "text",
      "segment": "text",
      "type": "text",
      "company": "text",
      "trustee": [
        {
          "person": {
            "name": "text",
            "nickname": "text",
            "document": "text"
          },
          "participation": {
            "name": "text",
            "service": false
          }
        }
      ],
      "custodian": [
        {
          "name": "text",
          "nickname": "text",
          "document": "text"
        }
      ],
      "emission_name": "text",
      "emission_code_name": "text",
      "emission_file": "text",
      "emission_volume": "text",
      "series_code": "text",
      "debtor": {
        "name": "text",
        "nickname": "text",
        "document": "text"
      },
      "originator": {
        "name": "text",
        "nickname": "text",
        "document": "text"
      },
      "assignor": {
        "name": "text",
        "nickname": "text",
        "document": "text"
      },
      "guarantee_type": [
        {
          "name": "text"
        }
      ],
      "lastro_types": [
        {
          "name": "text"
        }
      ],
      "structure_image": "https://example.com",
      "structure_text": "text"
    }
  ]
}

Dados de uma emissão

Busca Emissão por ID

GEThttps://operacoes.vert-capital.com/api/public/{version}/emission/{id}/
Path parameters
id*integer

A unique integer value identifying this Emissão.

version*string
Response
Body
idID
number*Número da Emissão
date*Date
seriesSeries
all_series_statusAll series status
customer*array of PersonList (object)
number_patrimonies*Número de Patrimônios da Emissão
concentration*Concentration
segment*Segment
type*Type
company*Company
trustee*array of SimplePersonParticipation (object)
custodian*array of SimplePersonList (object)
emission_nameEmission name
emission_code_nameEmission code name
emission_fileEmission file
emission_volume*Emission volume
series_codeSeries code
debtor*SimplePersonList (object)
originator*SimplePersonList (object)
assignor*SimplePersonList (object)
guarantee_type*array of GuaranteeType (object)
lastro_types*array of LastroType (object)
structure_imageImagem Estrutura Capital
structure_textTexto Estrutura Capital
Request
const response = await fetch('https://operacoes.vert-capital.com/api/public/{version}/emission/{id}/', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "number": "text",
  "date": "2024-09-16",
  "series": "text",
  "all_series_status": "text",
  "customer": [
    {
      "name": "text",
      "person_type": "legal_person",
      "nickname": "text",
      "document": "text",
      "state_registration": "text",
      "city_registration": "text",
      "participations": []
    }
  ],
  "concentration": "text",
  "segment": "text",
  "type": "text",
  "company": "text",
  "trustee": [
    {
      "person": {
        "name": "text",
        "nickname": "text",
        "document": "text"
      },
      "participation": {
        "name": "text",
        "service": false
      }
    }
  ],
  "custodian": [
    {
      "name": "text",
      "nickname": "text",
      "document": "text"
    }
  ],
  "emission_name": "text",
  "emission_code_name": "text",
  "emission_file": "text",
  "emission_volume": "text",
  "series_code": "text",
  "debtor": {
    "name": "text",
    "nickname": "text",
    "document": "text"
  },
  "originator": {
    "name": "text",
    "nickname": "text",
    "document": "text"
  },
  "assignor": {
    "name": "text",
    "nickname": "text",
    "document": "text"
  },
  "guarantee_type": [
    {
      "name": "text"
    }
  ],
  "lastro_types": [
    {
      "name": "text"
    }
  ],
  "structure_image": "https://example.com",
  "structure_text": "text"
}

Listagem das séries de uma emissão

GEThttps://operacoes.vert-capital.com/api/public/{version}/emission/{id}/series
Path parameters
id*string
version*string
Query parameters
Response
Body
count*integer
nextnullable string (uri)
previousnullable string (uri)
results*array of SeriesSerializerV2 (object)
Request
const response = await fetch('https://operacoes.vert-capital.com/api/public/{version}/emission/{id}/series', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "next": "https://example.com",
  "previous": "https://example.com",
  "results": [
    {
      "name": "text",
      "type": "text",
      "number": "text",
      "remuneration": "text",
      "capitalization_start_date": "2024-09-16",
      "due_date": "2024-09-16",
      "place_of_negotiation": "text",
      "code_cetip": "text",
      "code_isin": "text",
      "unit_price": "text",
      "tax_type": "text",
      "capitalization": "text",
      "currency": "text",
      "tax": "text",
      "offer_type": "text",
      "serie_volume": "text",
      "subordinate_percentage": "text",
      "emission_subordinate_percentage": "text"
    }
  ]
}

Atualizado