ResourcesLicense Instances

Retrieve a license instance

Retrieves the details of a specific license instance using the license key ID and the instance's unique UUID.

Retrieves the details of a specific license instance using the license key ID and the instance's unique UUID.

Refer to the license instance model section for details on the returned object structure.

GET
/v2/license-keys/{license_key}/instances/{instance}

Authorization

bearerAuth
AuthorizationBearer <token>

Provide your SellApp API key as a bearer token.

In: header

Path Parameters

license_key*integer

The license key path parameter.

instance*string

The instance path parameter.

Response Body

application/json

curl -X GET "https://sell.app/api/v2/license-keys/0/instances/string"
{
  "data": {
    "id": "9ebd37af-2077-42f9-9f88-d96cfc6ef1a8",
    "license_key_id": 1,
    "name": "zezima@osrs.com",
    "store_id": 1,
    "created_at": "2025-04-22T20:53:22.000000Z",
    "updated_at": "2025-04-22T20:53:22.000000Z"
  }
}