Actions24
- FIPE – Preço
- CEP (v1)
- CEP (v2)
- DDD → UF & cidades
- Banco por Código
- Câmbio – Cotação
- CNPJ
- Corretora por CNPJ
- Registro.br – Domínio
- Taxa por Sigla
- Feriados por Ano
- FIPE – Marcas
- FIPE – Veículos por Marca
- IBGE – UF por Código
- IBGE – Municípios
- NCM – Lista
- NCM por Código
- ISBN
- CPTEC – Buscar Cidade
- CPTEC – Clima Aeroporto
- CPTEC – Previsão 1 dia
- CPTEC – Previsão N dias
- CPTEC – Ondas 1 dia
- CPTEC – Ondas N dias
Overview
This node integrates with BrasilAPI, a public API providing various Brazilian data endpoints. It allows users to query diverse datasets such as postal codes (CEP), bank information, currency exchange rates, company registration data (CNPJ), domain registration info from Registro.br, vehicle pricing tables, municipal and state data from IBGE, weather forecasts, and more.
For the selected operation "Registro.br – Domínio," the node fetches domain registration details from Registro.br, which is Brazil's official domain registry. This can be useful for verifying domain ownership, checking domain status, or retrieving metadata about a Brazilian internet domain.
Practical example:
You want to verify if a domain like "exemplo.com" is registered in Brazil and obtain its registration details. Using this node with the "Registro.br – Domínio" operation, you input the domain name and receive structured information about it.
Properties
| Name | Meaning |
|---|---|
| Domínio | The domain name to query on Registro.br, e.g., "exemplo.com". |
Output
The output is a JSON object containing the response from the Registro.br endpoint of BrasilAPI. This typically includes detailed information about the domain registration such as registrant data, creation and expiration dates, status, and other metadata related to the domain.
The node does not output binary data.
Example output structure (simplified):
{
"domain": "exemplo.com",
"status": "...",
"created_at": "...",
"expires_at": "...",
"owner": {
"name": "...",
"document": "..."
},
...
}
Dependencies
- The node depends on the public BrasilAPI service accessible at
https://brasilapi.com.br/api. - No authentication or API keys are required.
- Requires internet access from the n8n environment to reach the BrasilAPI endpoints.
Troubleshooting
- Timeouts or slow responses: The node sets a 10-second request timeout. If BrasilAPI is slow or unreachable, requests may fail. Check network connectivity and BrasilAPI status.
- Unsupported operation error: If an invalid operation is set, the node throws an error indicating unsupported operation.
- Invalid domain format: Ensure the domain string is correctly formatted (e.g., no spaces, valid domain syntax).
- BrasilAPI errors: If the API returns an error (e.g., domain not found), the node will propagate that error. Verify the domain exists and try again.
Links and References
- BrasilAPI Documentation – Official docs for all available endpoints.
- Registro.br – Official Brazilian domain registry website.