Skip to content

Check License

Retrieving License Details

You can retrieve the details of a license by making a request to the following API endpoint:

GET https://api.ricardoneud.com/v3/reseller/{license_key}/check

Example Request

GET https://api.ricardoneud.com/v3/reseller/ABC123XYZ/check

Example Response

{
"license_data": [
{
"registered_to": "John Doe",
"domain_or_ip": ["example.com", "www.example.com"],
"status": "valid",
"product_name": "My Product"
}
]
}

Response Fields

FieldTypeDescription
registered_tostringThe name associated with the license
domain_or_ipstring[]A list that includes the original domain/IP and a www. variant if domain
statusstringThe current license status (valid, invalid, etc.)
product_namestringThe name of the product associated with the license, or "None" if empty

Error Responses

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

Notes

  • The license is matched based on the decrypted license key.
  • If the associated domain_or_ip is a domain (e.g. example.com), the response will include both the domain and its www. variant (e.g. www.example.com) in the domain_or_ip array.
  • If a product is linked to the license, its name is included under product_name; otherwise, "None" is returned.