Skip to content

Latest commit

 

History

History
114 lines (92 loc) · 1.59 KB

File metadata and controls

114 lines (92 loc) · 1.59 KB

Notice: You need an active API-KEY or you have to wait 300 seconds for the next request

API > Blocklist > Domains

Request Example

cURL

curl -H 'Authorization: <api_key>' \
-X GET 'https://api.celltek.space/blocklist/domains'

PHP

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.celltek.space/blocklist/domain');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
  'Authorization: <api_key>'
]);
curl_close($ch);
{
	"response":{
		"list": [
			{
				"id": <id>,
				"name": "<url>"
			},
			<more>
		]
	}
}

API > Blocklist > Phones

Request Example

cURL

curl -H 'Authorization: <api_key>' \
-X GET 'https://api.celltek.space/blocklist/phones'

PHP

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.celltek.space/blocklist/phones');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
  'Authorization: <api_key>'
]);
curl_close($ch);
{
	"response":{
		"list": [
			{
				"name": "<number>"
			},
			<more>
		]
	}
}

API > Blocklist > Words

Request Example

cURL

curl -H 'Authorization: <api_key>' \
-X GET 'https://api.celltek.space/blocklist/words'

PHP

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.celltek.space/blocklist/words');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
  'Authorization: <api_key>'
]);
curl_close($ch);
{
	"response":{
		"list": [
			{
				"name": "<string>"
			},
			<more>
		]
	}
}