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

# Incluir Nota Fiscal de Consumidor (NFC-e)

> Serviço destinado a incluir notas fiscais de consumidor eletrônicas.

## Endpoint

```
POST https://api.tiny.com.br/api2/nota.fiscal.consumidor.incluir.php
```

## Parâmetros

| Parâmetro | Tipo   | Ocorrência  | Descrição                                 |
| --------- | ------ | ----------- | ----------------------------------------- |
| token     | string | obrigatório | Chave gerada para identificar sua empresa |
| formato   | string | obrigatório | Formato do retorno (json)                 |
| nota      | xml    | obrigatório | Dados da NFC-e em formato XML             |

## Descrição

Este serviço é específico para emissão de NFC-e (Nota Fiscal de Consumidor Eletrônica), utilizada em vendas presenciais no varejo.

## Exemplo de chamada

```bash theme={null}
curl -X POST https://api.tiny.com.br/api2/nota.fiscal.consumidor.incluir.php \
  -d "token=SEU_TOKEN&formato=json" \
  -d "nota=<?xml version=\"1.0\" encoding=\"UTF-8\"?><nfce>...</nfce>"
```
