JSON Debugger
JSON Validator Endpoint
The JSON Validator endpoint allows you to validate and check the correctness of a given JSON object or array. This endpoint ensures that the provided data is in a proper JSON format, checks for any missing fields, or invalid data, and provides feedback on whether the JSON is valid, empty, or malformed.
Endpoint
URL:
https://api.erensko.xyz/v1/json-validator
Method:
POST
Description: This endpoint accepts a JSON object or array in the request body and validates its structure. It provides a response detailing whether the JSON is valid, empty, or incorrectly formatted.
Body
Key
Value
json
The JSON object or array you would like to validate.
Headers
Key
Value
Authorization
Request Example
Response Example
Success (200 OK) - Valid JSON:
Success (200 OK) - Empty JSON:
Error (400 Bad Request) - Missing JSON:
Error (400 Bad Request) - Invalid JSON Format:
Last updated