
Data Summary
A powerful API that analyzes JSON and CSV datasets to provide comprehensive statistical summaries. Get detailed insights into your data with statistical calculations like mean, median, standard deviation, as well as distribution analysis, outlier detection and correlation analysis. Perfect for data exploration, quality assessment, automated reporting, and insights generation.
API Playground
Test the API endpoints with different parameters and see the responses in real-time.
Analyze data to extract comprehensive statistical insights using a POST request
Use Case Example
Request Parameters
Required Parameters1
The dataset to analyze, either as a JSON string, parsed JSON object, or CSV string
Optional Parameters
The format of the data: "json" or "csv". Will be auto-detected if not specified
Whether to include outlier detection in the analysis
Whether to include value distribution analysis in the results
Number of decimal places to round numerical statistics to (0-10)
Number of sample values to include in the results for each column (1-20)
Array of column names to exclude from the analysis
Sample Code
curl -X POST "/api/data-summary/" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{
"data": "{"id":[1,2,3,4,5],"value":[10,15,13,22,8],"category":["A","B","A","C","B"]}",
"format": "json",
"includeOutliers": "true",
"includeDistribution": "true",
"decimalPlaces": "2",
"sampleSize": "5",
"excludeColumns": "[]"
}'
Ready-to-use code
YOUR_API_KEY
with your actual API key from your developer dashboard.