Seller Export Used

POST
https://authsecure.com/api/seller/

End/Modify user data and sessions directly securely.

Returns all used license keys in plain text format.

Each license is returned on a new line.

Endpoint Details

GET /api/seller_export_used.php

Query Parameters

ParameterRequiredDescription
sellerkeyYesSeller API Key

Text Response

USED-KEY-1
USED-KEY-2
USED-KEY-3

Empty Response

No used licenses

Code Examples

fetch("http://localhost/commen/api/seller_export_used.php?sellerkey=KEY")
 .then(r => r.text())
 .then(console.log);
<?php
echo file_get_contents(
 "http://localhost/commen/api/seller_export_used.php?sellerkey=KEY"
);
?>
import requests
r = requests.get("http://localhost/commen/api/seller_export_used.php", params={
 "sellerkey":"KEY"
})
print(r.text)
var client = new RestClient(
 "http://localhost/commen/api/seller_export_used.php?sellerkey=KEY"
);
var res = client.Execute(new RestRequest(Method.GET));
Console.WriteLine(res.Content);