JSON (JavaScript Object Notation) is a lightweight data format used for storing and exchanging data. It's human-readable, easy to use, and supported by virtually every programming language.
JSON is a text-based format for representing structured data. Despite its name, JSON is language-independent and works with Python, Java, C#, Ruby, PHP, and more.
{
"name": "John Doe",
"age": 30,
"isStudent": false,
"courses": ["Math", "Science"],
"address": {
"city": "New York",
"zip": "10001"
}
}
Try our free JSON viewer, validator, and formatter tool
Start Using JSONXPath Free →