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
Field | Type | Description |
---|---|---|
registered_to | string | The name associated with the license |
domain_or_ip | string[] | A list that includes the original domain/IP and a www. variant if domain |
status | string | The current license status (valid , invalid , etc.) |
product_name | string | The 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 itswww.
variant (e.g.www.example.com
) in thedomain_or_ip
array. - If a product is linked to the license, its name is included under
product_name
; otherwise,"None"
is returned.