JQ formulas let you apply JQ queries to any JSON column in your table. The result is written into a new column (stored as JSON), giving you full control over nested data without leaving Databar.Documentation Index
Fetch the complete documentation index at: https://docs.databar.ai/llms.txt
Use this file to discover all available pages before exploring further.
JQ formulas are a transformation — they do not consume any credits.
What is JQ?
JQ is a lightweight command-line language designed for slicing, filtering, and transforming JSON data. It is particularly powerful when you need to dig into deeply nested objects or arrays that enrichment APIs return. If you are new to JQ, the official manual is a great starting point.How to use
Add a JQ Formula transformation
Open your table and add a new transformation column. Select JQ Formula from the list.

Use cases
| Scenario | Example expression |
|---|---|
| Count specific event types | [.events[] | select(.type == "purchase")] | length |
| Extract a nested value | .company.funding.last_round.amount |
| Build a structured output | {name: .full_name, city: .address.city} |
| Filter an array | [.contacts[] | select(.role == "CEO")] |
AI assistance for writing JQ queries
Related
JSON expander
Extract JSON values into separate columns visually.
Excel formulas
Use spreadsheet formulas for simpler column logic.