Skip to main content
GET
/
v2
/
clients
/
licenses
Get Licenses
curl --request GET \
  --url https://api.ricardoneud.com/v2/clients/licenses \
  --header 'Authorization: Bearer <token>' \
  --header 'X-User-Email: <x-user-email>'
[
  {
    "domain_or_ip": "example.com",
    "license_key": "RicardoNeud-afa890e8ef375aed",
    "status": "invalid"
  },
  {
    "domain_or_ip": "ricardoneud.com",
    "license_key": "RicardoNeud-fa7e33f823848115",
    "status": "valid"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-User-Email
string
required

The email address of the user whose licenses you want to retrieve

Response

200 - application/json

Fields in the Response:

  • domain_or_ip: The domain or IP address associated with the license.
  • license_key: The unique key assigned to the license.
  • status: The current status of the license (e.g., valid, invalid).
domain_or_ip
string
required
license_key
string
required
status
string
required
I