Notice: You need an active API-KEY or you have to wait 300 seconds for the next request
curl -H 'Authorization: <api_key>' \
-X GET 'https://api.celltek.space/ext/<id>'
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.celltek.space/ext/<id>');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Authorization: <api_key>'
]);
curl_close($ch);
{
"response": {
"id": <id>,
"name": "<name>",
"link": "https://www.celltek.space/extensions/<id>",
"changelog": "<url>",
"version": {
"full": "<version>",
"short": <version>
},
"required": {
"tekbase": "<version>",
"dependices": [
<list>
]
},
"vendor": {
"publisher": "<name>",
"verified": <boolean>,
"url": "<url>",
"privacypolice": "<url>",
"support": "<url>"
},
"shop": {
"category": "<name>",
"catid": <id>,
"price": <price>,
"currency": "<currency>",
"fees": "<pirce>",
"term": "<number>"
},
"time": {
"create_at": <timestamp>,
"update_at": <timestamp>
}
}
}
curl -H 'Authorization: <api_key>' \
-X GET 'https://api.celltek.space/ext/cats'
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.celltek.space/ext/cats');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Authorization: <api_key>'
]);
curl_close($ch);
{
"response": {
"list": [
{
"id": <id>,
"title": "<name>",
"icon": "<string>",
"count": <number>
},
<more>
]
}
}
curl -H 'Authorization: <api_key>' \
-X GET 'https://api.celltek.space/ext/list'
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.celltek.space/ext/list');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Authorization: <api_key>'
]);
curl_close($ch);
{
"response": {
"list": [
{
"id": <id>,
"name": "<name>",
"link": "https://www.celltek.space/extensions/<id>",
"changelog": "<url>",
"version": {
"full": "<version>",
"short": <version>
},
"required": {
"tekbase": "<version>",
"dependices": [
<list>
]
},
"vendor": {
"publisher": "<name>",
"verified": <boolean>,
"url": "<url>",
"privacypolice": "<url>",
"support": "<url>"
},
"shop": {
"category": "<name>",
"catid": <id>,
"price": <price>,
"currency": "<currency>",
"fees": "<pirce>",
"term": "<number>"
},
"time": {
"create_at": <timestamp>,
"update_at": <timestamp>
}
},
<more>
]
}
}