Skip to main content
POST
/
projects
/
{project}
/
tables
/
{table}
/
records
/
search
cURL
curl --request POST \
  --url https://api.base39.com.br/v2/projects/{project}/tables/{table}/records/search \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "f_zmHL6ZWVkZogjCBMYwVMT": "São Paulo",
  "CNPJ": "57778216000108"
}
'
[
  {
    "report": {
      "sections": [
        {
          "status": "done",
          "title": "Resumo",
          "value": "..."
        },
        {
          "status": "processing",
          "title": "Histórico",
          "value": "..."
        }
      ]
    },
    "fields": {
      "email": "joao@email.com",
      "nome": "João Silva",
      "f_zmHL6ZWVkZogjCBMYwVMT": "São Paulo"
    }
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.base39.com.br/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

project
string
required

Identificador do projeto

table
string
required

Identificador da tabela

Body

application/json

Filtros de pesquisa. As chaves são dinâmicas e podem ser qualquer campo da base.

{key}
string

Valor do campo para filtro

Response

200 - application/json

Resultados da pesquisa

report
object
fields
object