Last updated: 2026-01-23
Base Path:
/v1/test
Overview
The Test API provides endpoints used to verify:- API authentication
- Request signing
- Replay protection
- Error handling behavior
- JSON body hashing and parsing
Authentication
All requests must include the following headers:
Requests missing any of these headers will be rejected.
GET /v1/test/ping
Description
Health-check endpoint used to verify:- API connectivity
- Signature correctness
- Authentication configuration
Request
Successful Response
Response Fields
Possible Errors
GET /v1/test/fail
Description
This endpoint always returns a validation error.It is used to test client-side error handling and error parsing.
Request
Error Response
Error Code
POST /v1/test/post
Description
Echo test endpoint. Used to verify:- Request signing
- Body hashing
- JSON parsing
- Response format
Request
Successful Response
Notes
- The request body may include any valid JSON object.
- The response returns the request body under
payload.your_request_body.
Possible Errors
Usage Recommendations
- Use
/v1/test/pingto verify authentication setup - Use
/v1/test/postto verify body signing (hashing) and JSON parsing - Use
/v1/test/failto test error parsing - Always log
request_idfor debugging - Ensure timestamps are in UTC
- Never reuse nonces
Notes
- All test endpoints require valid authentication
- Requests are subject to replay protection
- Responses follow the standard API response format
End of document.