> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cnpj-api.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Quick Start

> Make your first query in under 5 minutes

# Quick Start

## 1. Get your token

Create a free account to receive your authentication token. See [Create Account](/en/criar-conta).

## 2. Make your first query

```bash theme={null}
curl "https://api.cnpj-api.com/v1/cnpj/12345678000195?token=YOUR_TOKEN"
```

## 3. Receive the response

```json theme={null}
{
  "cnpj": "12345678000195",
  "razao_social": "ALFA COMERCIO DIGITAL LTDA",
  "nome_fantasia": "ALFA DIGITAL",
  "data_abertura": "2020-06-05",
  "matriz": true,
  "situacao": {
    "codigo": 2,
    "descricao": "Ativa"
  },
  "atividade_principal": {
    "codigo": 6311900,
    "descricao": "Tratamento de dados, provedores de servicos de aplicacao e servicos de hospedagem na internet"
  },
  "endereco": {
    "logradouro": "Avenida Brigadeiro Faria Lima",
    "numero": "2369",
    "bairro": "Jardim Paulistano",
    "municipio": "Sao Paulo",
    "uf": "SP",
    "cep": "01452922"
  },
  "empresa": {
    "capital_social": 1000,
    "natureza_juridica": {
      "codigo": 2062,
      "descricao": "Sociedade Empresaria Limitada"
    },
    "socios": []
  }
}
```

## Next steps

* [Authentication](/en/autenticacao) - Understand authentication methods and limits
* [CNPJ Lookup](/en/endpoint-cnpj) - See all available fields
* [Logos & Websites](/en/endpoint-logos) - Get the company's visual identity
