Import Formats
Learn about the different file formats and import methods supported by Pandia.
Supported File Formats
Pandia can import data from multiple file formats and automatically convert them to JSON for editing and visualization.
.json JSON
Standard JSON files. Supports pretty-printed and minified JSON.
.yaml .yml YAML
YAML files including support for comments. Automatically converted to JSON on import.
.xml XML
XML files with automatic conversion to JSON. Preserves attributes and nested elements.
.csv .tsv CSV / TSV
Comma-separated and tab-separated value files. Converted to JSON array with headers as keys.
Import Methods
Drag & Drop
Simply drag any supported file onto the Pandia window to open it.
Open File
Use the file picker to browse and open files from your computer.
Paste from Clipboard
Copy JSON, YAML, XML, or CSV text from anywhere and paste it directly into Pandia.
Import from URL
Fetch data directly from any publicly accessible URL. Perfect for API responses.
- - REST API endpoints
- - Raw GitHub files
- - Any URL returning JSON/YAML/XML/CSV
Import from cURL
Paste a cURL command and Pandia will execute it and load the response. Supports headers, authentication, and request methods.
Import from GitHub Gist
Enter a Gist URL or ID to load JSON directly from GitHub Gists. Supports both public and secret gists.
Automatic Format Detection
Pandia automatically detects the format of your data based on:
- File extension - First checks the file extension (.json, .yaml, etc.)
- Content patterns - Analyzes the content structure if extension is unknown
- Fallback parsing - Tries all parsers if detection fails