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

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
  • 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.
license_data
object[]
required
I