Skip to main content
GET
/
v2
/
reseller
/
{license_key}
/
check
Check License
curl --request GET \
  --url https://api.ricardoneud.com/v2/reseller/{license_key}/check \
  --header 'Authorization: Bearer <token>'
{
  "license_data": [
    {
      "registered_to": "John Doe",
      "domain_or_ip": [
        "example.com",
        "www.example.com"
      ],
      "status": "valid"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

license_key
string
required

Response

200 - application/json

Error Responses:

  • 500 Internal Server Error: If there’s an issue retrieving data from the database.

Notes:

  • The response contains the license details such as:
    • registered_to: The name associated with the license.
    • domain_or_ip: A list that includes the domain or IP associated with the license, with a possibility to include the "www" variant for domain names.
    • status: The current status of the license (e.g., valid, invalid).
license_data
object[]
required
I