The API "does nothing" except return "Pong!" if everything is OK. Additionally, it returns the JWT token in a human-readable format. Useful for checking overall API system availability and also debugging the JWT token.
Request
Authorization
Add the parameter
Authorization
to Headers,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
Header Params
X-Nonce
string<uuid>
optional
A random uuid string to identify an CLIENT INTENTION as unique. In case of retrying the same request, always use the same nonce. For new operations, use a new one. By default, if this param is empty, a new nonce would be generated.
X-Async
string
write-onlyoptional
Can be true, false or auto. If not auto forces API async or sync behavior.
Default:
auto
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl--location--request GET 'https://depix.eulen.app/api/ping' \
--header'X-Nonce;' \
--header'X-Async: auto'