Format Overview
JSON
Free Format
- Web applications
- APIs and microservices
- JavaScript/Node.js projects
- Mobile app backends
CSV
+1 Credit
- Spreadsheet analysis
- Data science workflows
- Excel/Google Sheets
- BI tools and dashboards
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
SQL
+3 Credits
- Database seeding
- Data migration
- Direct imports
- Production deployments
JSON Format (Free)
The most popular format for modern web development. Perfect for APIs, web applications, and mobile backends.Clean, nested structure with logical grouping:Multi-dataset structure:
Sample Countries Export
Countries + States Export
CSV Format (+1 Credit)
Perfect for spreadsheet analysis, data science workflows, and business intelligence tools.Clean, standardized CSV with headers:Multi-sheet structure for combined datasets:
Countries Export
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 (+3 Credits)
Ready-to-execute SQL statements for direct database imports, perfect for production deployments and data migrations.Complete database schema with relationships:
Countries & States Export
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:
Web Applications & APIs
Web Applications & APIs
Recommendation: JSON (Free)
- Native JavaScript support
- Easy API integration
- No additional parsing needed
- Perfect for React, Vue, Angular
Data Analysis & BI
Data Analysis & BI
Recommendation: CSV (+1 credit)
- Excel/Google Sheets ready
- Pandas compatibility
- Tableau/PowerBI import
- Statistical analysis tools
Enterprise Systems
Enterprise Systems
Recommendation: XML (+2 credits)
- Schema validation
- SOAP web services
- Legacy system integration
- Structured data requirements
Configuration & DevOps
Configuration & DevOps
Recommendation: YAML (+2 credits)
- Human-readable format
- Kubernetes configs
- CI/CD pipelines
- Documentation-friendly
Database Population
Database Population
Recommendation: SQL (+3 credits)
- Direct database import
- Proper relationships
- Production-ready
- Migration-friendly
3
Calculate Total Cost
Final Cost Formula:
Best Practices by Format
Performance Tips:Memory Management:
Lazy Loading
Efficient Processing
Need help choosing a format? Consider your primary use case:
- Quick prototyping: Start with JSON (free)
- Data analysis: Use CSV for spreadsheet compatibility
- Production database: Invest in SQL for proper setup
- Configuration management: YAML for readability