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/req/ip/<ipv4|ipv6>'
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.celltek.space/req/ip/<ipv4|ipv6>');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Authorization: <api_key>'
]);
curl_close($ch);
{
"response": {
"short": {
<short_list>
},
"<details>"{
<details_list>
},
}
}
curl -H 'Authorization: <api_key>' \
-X GET 'https://api.celltek.space/req/sslscan/<domain>'
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.celltek.space/req/sslscan/<domain>');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Authorization: <api_key>'
]);
curl_close($ch);
{
"response": {
"host": "<domain>",
"port": <port>,
"protocol": "<protocol>",
"isPublic": <boolean>,
"status": "<text>",
"startTime": <timestamp>,
"engineVersion": "<version>",
"criteriaVersion": "<version>",
"<endpoints>"{
<endpoints_list>
},
}
}
curl -H 'Authorization: <api_key>' \
-X GET 'https://api.celltek.space/req/steam/<steamID>'
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.celltek.space/req/steam/<steamID>');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Authorization: <api_key>'
]);
curl_close($ch);
{
"response": {
"name": "<name>",
"buildid": <version>,
"branch": "<branch>"
}
}
curl -H 'Authorization: <api_key>' \
-X GET 'https://api.celltek.space/req/steam/<steamID>/<steamBranch>'
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.celltek.space/req/steam/<steamID>/<steamBranch>');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Authorization: <api_key>'
]);
curl_close($ch);
{
"response": {
"name": "<name>",
"buildid": <version>,
"branch": "<branch>"
}
}
curl -H 'Authorization: <api_key>' \
-X GET 'https://api.celltek.space/req/minecraft/plugin/<id>'
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.celltek.space/req/minecraft/plugin/<id>');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Authorization: <api_key>'
]);
curl_close($ch);
{
"response": {
"file": "<url>",
"name": "<name>",
"gameVersion": <version>,
"url": "<url>",
"buildid": <version>
}
}
Notice: Store TP does not need an ID but the SLUG
curl -H 'Authorization: <api_key>' \
-X GET 'https://api.celltek.space/req/minecraft/modpack/<cf|ftb|tp>/<id>'
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.celltek.space/req/minecraft/modpack/<cf|ftb|tp>/<id>');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Authorization: <api_key>'
]);
curl_close($ch);
{
"response": {
"name": "<name>",
"author": "<name>",
"description": "<description>",
"image": "<url>",
"url": "<url>",
"file": "<url>",
"dateReleased": <timestamp>,
"dateCreated": <timestamp>,
"dateModified": <timestamp>,
"buildid": "<version>"
}
}
curl -H 'Authorization: <api_key>' \
-X GET 'https://api.celltek.space/req/tmp/version'
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.celltek.space/req/tmp/version');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Authorization: <api_key>'
]);
curl_close($ch);
{
"response": {
"name": "<string>",
"numeric": <int>,
"stage": "<string>",
"ets2mp_checksum": {
"dll": "<string>",
"adb": "<string>"
},
"atsmp_checksum": {
"dll": "<string>",
"adb": "<string>"
},
"time": "<string>",
"supported_game_version": "<string>",
"supported_ats_game_version": "<string>"
}
}
curl -H 'Authorization: <api_key>' \
-X GET 'https://api.celltek.space/req/tmp/time'
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.celltek.space/req/tmp/time');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Authorization: <api_key>'
]);
curl_close($ch);
{
"response": {
"timestamp": <int>,
"time": "<string>"
}
}
curl -H 'Authorization: <api_key>' \
-X GET 'https://api.celltek.space/req/tmp/server'
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.celltek.space/req/tmp/server');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Authorization: <api_key>'
]);
curl_close($ch);
{
"response": [
{
"id": <int>,
"game": "<string>",
"ip": "<string>",
"port": <int>,
"name": "<string>",
"shortname": "<string>",
"idprefix": "<string>",
"online": <boolean>,
"players": <int>,
"queue": <int>,
"maxplayers": <int>,
"mapid": <int>,
"displayorder": <int>,
"speedlimiter": <int>,
"collisions": <boolean>,
"carsforplayers": <boolean>,
"policecarsforplayers": <boolean>,
"afkenabled": <boolean>,
"event": <boolean>,
"specialEvent": <boolean>,
"promods": <boolean>,
"syncdelay": <int>
},
[LIST]
]
}
curl -H 'Authorization: <api_key>' \
-X GET 'https://api.celltek.space/req/tmp/server/<id>'
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.celltek.space/req/tmp/server/<id>');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Authorization: <api_key>'
]);
curl_close($ch);
{
"response":
{
"id": <int>,
"game": "<string>",
"ip": "<string>",
"port": <int>,
"name": "<string>",
"shortname": "<string>",
"idprefix": "<string>",
"online": <boolean>,
"players": <int>,
"queue": <int>,
"maxplayers": <int>,
"mapid": <int>,
"displayorder": <int>,
"speedlimiter": <int>,
"collisions": <boolean>,
"carsforplayers": <boolean>,
"policecarsforplayers": <boolean>,
"afkenabled": <boolean>,
"event": <boolean>,
"specialEvent": <boolean>,
"promods": <boolean>,
"syncdelay": <int>
}
}
curl -H 'Authorization: <api_key>' \
-X GET 'https://api.celltek.space/req/tmp/server/mapid/<id>'
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.celltek.space/req/tmp/server/mapid/<id>');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Authorization: <api_key>'
]);
curl_close($ch);
{
"response":
{
"id": <int>,
"game": "<string>",
"ip": "<string>",
"port": <int>,
"name": "<string>",
"shortname": "<string>",
"idprefix": "<string>",
"online": <boolean>,
"players": <int>,
"queue": <int>,
"maxplayers": <int>,
"mapid": <int>,
"displayorder": <int>,
"speedlimiter": <int>,
"collisions": <boolean>,
"carsforplayers": <boolean>,
"policecarsforplayers": <boolean>,
"afkenabled": <boolean>,
"event": <boolean>,
"specialEvent": <boolean>,
"promods": <boolean>,
"syncdelay": <int>
}
}
curl -H 'Authorization: <api_key>' \
-X GET 'https://api.celltek.space/req/tmp/player/<truckerid|steamid64>'
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.celltek.space/req/tmp/player/<truckerid|steamid64>');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Authorization: <api_key>'
]);
curl_close($ch);
{
"response": {
"id": <int>,
"name": "<string>",
"avatar": "<string>",
"smallAvatar": "<string>",
"joinDate": "<string>",
"steamID64": <int>,
"steamID": <int>,
"discordSnowflake": null,
"displayVTCHistory": <boolean>,
"groupName": "<string>",
"groupColor": "<string>",
"groupID": <int>,
"banned": <boolean>,
"bannedUntil": null,
"bansCount": <int>,
"displayBans": <boolean>,
"patreon": {
"isPatron": true,
"active": <boolean>,
"color": null,
"tierId": null,
"currentPledge": null,
"lifetimePledge": <int>,
"nextPledge": null,
"hidden": <boolean>
},
"permissions": {
"isStaff": <boolean>,
"isUpperStaff": <boolean>,
"isGameAdmin": <boolean>,
"showDetailedOnWebMaps": <boolean>
},
"vtc": {
"id": <int>,
"name": "<string>",
"tag": "<string>",
"inVTC": <boolean>,
"memberID": <int>
},
"vtcHistory": null
}
}
curl -H 'Authorization: <api_key>' \
-X GET 'https://api.celltek.space/req/tmp/online/search/<query>'
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.celltek.space/req/tmp/online/search/<query>');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Authorization: <api_key>'
]);
curl_close($ch);
{
"response": [
{
"id": <int>,
"name": "<string>",
"avatar": "<string>",
"profile": "<string>",
"joinDate": "<string>",
"groupName": "<string>",
"banned": false,
"bansCount": <int>,
"bannedUntil": null,
"gps": {
"playerId": <int>,
"X": <int>,
"Y": <int>,
"follow": "<string>"
},
"server": {
"game": "<string>",
"name": "<string>",
"traffic": [
"<string>",
"<string>",
"<string>",
"<string>",
"<string>",
"<string>",
"<string>",
"<string>",
"<string>",
"<string>"
],
"url": "<string>"
}
},
[LIST]
]
}