Skip to main content
Choose the perfect format for your project. Each format is optimized for specific use cases and comes with different credit costs and integration patterns.

Format Overview

JSON

+2 Credits
  • Web applications
  • APIs and microservices
  • JavaScript/Node.js projects
  • Mobile app backends

NDJSON

+2 Credits
  • Streaming and ETL pipelines
  • Line-by-line processing
  • Bulk loading (BigQuery, Elasticsearch)
  • Append-only data logs

CSV

+3 Credits
  • Spreadsheet analysis
  • Data science workflows
  • Excel/Google Sheets
  • BI tools and dashboards

Excel

+4 Credits
  • Multi-sheet .xlsx workbooks
  • Business and reporting
  • Offline analysis (Sheets, Calc)
  • No-code sort, filter, pivot

Markdown

+3 Credits
  • Documentation and READMEs
  • Wikis and knowledge bases
  • Pull-request summaries
  • Human-readable tables

XML

+2 Credits
  • Enterprise systems
  • SOAP APIs
  • Legacy system integration
  • Configuration files

YAML

+2 Credits
  • Configuration files
  • DevOps and CI/CD
  • Documentation
  • Human-readable data

MySQL

+4 Credits
  • MySQL / MariaDB imports
  • Full schema with indexes
  • Foreign key constraints
  • Production-ready DDL

PostgreSQL

+5 Credits
  • PostgreSQL-specific DDL
  • Type inference and indexes
  • Constraints and check rules
  • PostGIS compatible

SQLite

+5 Credits
  • Embedded and mobile apps
  • Single-file database
  • Lightweight deployments
  • Zero-config setup

SQL Server

+5 Credits
  • Microsoft SQL Server DDL
  • T-SQL compatible
  • Enterprise deployments
  • Azure SQL ready

MongoDB

+4 Credits
  • NoSQL document store
  • Flexible schema queries
  • mongorestore compatible
  • Aggregation pipeline ready

GeoJSON

+4 Credits
  • Mapping and GIS
  • Spatial queries
  • Map libraries (Mapbox, Leaflet)
  • Compatible with PostGIS
PostgreSQL, SQLite, and SQL Server produce dialect-specific DDL with type inference, indexes, and constraints. MySQL produces a full schema with foreign keys and indexes. All SQL formats are ready-to-import.

JSON Format (+2 Credits)

The most popular format for modern web development. Perfect for APIs, web applications, and mobile backends.
Clean, nested structure with logical grouping:
Sample Countries Export
Multi-dataset structure:
Countries + States Export

CSV Format (+3 Credits)

Perfect for spreadsheet analysis, data science workflows, and business intelligence tools.
Clean, standardized CSV with headers:
Countries Export
Multi-sheet structure for combined datasets:
countries.csv
states.csv

XML Format (+2 Credits)

Ideal for enterprise systems, SOAP APIs, and legacy system integrations that require structured, schema-validated data.
Well-formed XML with proper namespaces:
Countries Export

YAML Format (+2 Credits)

Human-readable format perfect for configuration files, documentation, and DevOps workflows.
Clean, hierarchical YAML structure:
Countries Export

SQL Format (+4 Credits, dialects +5)

Ready-to-execute SQL statements for direct database imports, perfect for production deployments and data migrations.
Complete database schema with relationships:
Countries & States Export

MongoDB Format (+4 Credits)

A mongodump-compatible BSON/JSON export ready to load directly into MongoDB using mongorestore or mongoimport.
Document structure for countries:
Sample Countries Export
Nested states export:
Countries with States

GeoJSON Format (+4 Credits)

GeoJSON is a standard format for encoding geographical data structures. Each city or region is exported as a GeoJSON Feature with coordinates and properties, making it directly usable with mapping libraries and spatial databases.
FeatureCollection for cities:
Sample GeoJSON Export
Coordinates follow the GeoJSON standard: [longitude, latitude] (not [latitude, longitude]). The coordinate reference system is WGS 84 (EPSG:4326).

Format Selection Guide

Choosing the right format can save you credits and development time. Use this decision tree:
1

Define Your Use Case

Ask yourself:
  • Where will this data be used?
  • Who will consume the data?
  • What tools do you have available?
  • Do you need real-time updates?
2

Consider Integration Complexity

Development Time vs Credit Cost:
Recommendation: JSON (+2 credits)
  • Native JavaScript support
  • Easy API integration
  • No additional parsing needed
  • Perfect for React, Vue, Angular
Recommendation: CSV (+3 credits)
  • Excel/Google Sheets ready
  • Pandas compatibility
  • Tableau/PowerBI import
  • Statistical analysis tools
Recommendation: XML (+2 credits)
  • Schema validation
  • SOAP web services
  • Legacy system integration
  • Structured data requirements
Recommendation: YAML (+2 credits)
  • Human-readable format
  • Kubernetes configs
  • CI/CD pipelines
  • Documentation-friendly
Recommendation: SQL (+4 credits) or PostgreSQL/SQL Server/SQLite3 (+5 credits)
  • Direct database import
  • Proper relationships
  • Production-ready
  • Migration-friendly
3

Calculate Total Cost

Final Cost Formula:

Best Practices by Format

Performance Tips:
Lazy Loading
Memory Management:
Efficient Processing

NDJSON Format (+2 Credits)

NDJSON (Newline-Delimited JSON) writes one JSON object per line with no enclosing array, so each line is an independent, fully-valid JSON record. This makes it ideal for streaming, append-only logs, and big-data tools that process input line by line without loading the whole file into memory.
Because each line stands alone, you can stream an NDJSON export straight into tools like jq, BigQuery, ClickHouse, Spark, or Elasticsearch’s bulk API with no array-unwrapping step.

When to use NDJSON

Streaming & ETL

Process records one line at a time in data pipelines without buffering the entire dataset in memory.

Bulk loading

Feed warehouses and search engines (BigQuery, ClickHouse, Elasticsearch) that natively accept newline-delimited JSON.

Markdown Format (+3 Credits)

The Markdown export renders your selected data as GitHub-flavoured Markdown tables — one table per dataset, with a header row and one row per record. It is meant for documentation, READMEs, wikis, and pull-request descriptions where the data needs to be readable at a glance without any extra tooling.
Markdown is best for smaller, curated exports embedded in docs. For large datasets, prefer CSV or JSON — a table with tens of thousands of rows is impractical to render in a Markdown viewer.

When to use Markdown

Documentation

Drop ready-made tables into READMEs, wikis, or Mintlify / Docusaurus pages.

Reports & PRs

Share a quick, readable snapshot of geographical data in issues, pull requests, or notes.

Excel Format (+4 Credits)

The Excel export produces a native .xlsx workbook — a binary spreadsheet with one worksheet per dataset (Countries, States, Cities), a bold header row, and sensible column widths. It opens directly in Microsoft Excel, Google Sheets, LibreOffice Calc, or Numbers with no import step.
Use the native .xlsx export when you want a ready-to-share workbook with multiple sheets. If you only need a single table for scripting or BI ingestion, CSV is lighter and costs one credit less.

When to use Excel

Business & reporting

Hand a polished, multi-sheet workbook to analysts and stakeholders who live in spreadsheets.

Offline analysis

Sort, filter, pivot, and chart geographical data without writing any code.

Need help choosing a format? Consider your primary use case:
  • Quick prototyping: Start with JSON for web apps
  • Data analysis: Use CSV for spreadsheet compatibility
  • Production database: Invest in SQL for proper setup
  • Configuration management: YAML for readability
  • Streaming & big data: Use NDJSON for line-delimited records

View Pricing

See detailed pricing for all formats and credit packages