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/v2/reseller/{license_key}/check
Example Request:
GET https://api.ricardoneud.com/v2/reseller/{license_key}/check
Example Response:
{ "license_data": [ { "registered_to": "John Doe", "domain_or_ip": ["example.com", "www.example.com"], "status": "valid" } ]}
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
).