cURL
curl --request POST \ --url http://app.localhost:3000/api/public/v1/builder/sessions/validate \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "token": "<string>" } '
{ "message": "<string>", "code": "<string>", "issues": [ { "message": "<string>" } ] }
Validate a builder session token and return its decoded payload. Useful for debugging and testing token validity.
Note: This endpoint does not require authentication - it just verifies the token signature.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful response