Others
ScrapTik
Free
We provide Marketing Agencies and SaaS Companies with a wrapper to the TikTok API. Always-maintained, up-to-date, and scale-friendly.
CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET");
curl_easy_setopt(hnd, CURLOPT_URL, "https://scraptik.p.rapidapi.com/list-followers?user_id=6802299750194643973&count=10&max_time=0");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "X-RapidAPI-Key: SIGN-UP-FOR-KEY");
headers = curl_slist_append(headers, "X-RapidAPI-Host: scraptik.p.rapidapi.com");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);
CURLcode ret = curl_easy_perform(hnd);
import http.client
conn = http.client.HTTPSConnection("scraptik.p.rapidapi.com")
headers = {
'X-RapidAPI-Key': "SIGN-UP-FOR-KEY",
'X-RapidAPI-Host': "scraptik.p.rapidapi.com"
}
conn.request("GET", "/list-followers?user_id=6802299750194643973&count=10&max_time=0", headers=headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
const url = 'https://scraptik.p.rapidapi.com/list-followers?user_id=6802299750194643973&count=10&max_time=0';
const options = {
method: 'GET',
headers: {
'X-RapidAPI-Key': 'SIGN-UP-FOR-KEY',
'X-RapidAPI-Host': 'scraptik.p.rapidapi.com'
}
};
try {
const response = await fetch(url, options);
const result = await response.text();
console.log(result);
} catch (error) {
console.error(error);
}
L’API Basic Display pour Instagram permet aux utilisateurs de votre app d'obtenir des informations générales sur un profil, des photos et des vidéos de comptes Instagram.
curl -i -X GET \
"https://graph.facebook.com/v17.0/me/accounts?access_token={access-token}"
Coming Soon !
Coming Soon !
Social Media Data TT
Free
Coming Soon!
CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET");
curl_easy_setopt(hnd, CURLOPT_URL, "https://social-media-data-tt.p.rapidapi.com/live/hashtag/search?keyword=blah");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "X-RapidAPI-Key: SIGN-UP-FOR-KEY");
headers = curl_slist_append(headers, "X-RapidAPI-Host: social-media-data-tt.p.rapidapi.com");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);
CURLcode ret = curl_easy_perform(hnd);
import http.client
conn = http.client.HTTPSConnection("social-media-data-tt.p.rapidapi.com")
headers = {
'X-RapidAPI-Key': "SIGN-UP-FOR-KEY",
'X-RapidAPI-Host': "social-media-data-tt.p.rapidapi.com"
}
conn.request("GET", "/live/hashtag/search?keyword=blah", headers=headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
const http = require('https');
const options = {
method: 'GET',
hostname: 'social-media-data-tt.p.rapidapi.com',
port: null,
path: '/live/hashtag/search?keyword=blah',
headers: {
'X-RapidAPI-Key': 'SIGN-UP-FOR-KEY',
'X-RapidAPI-Host': 'social-media-data-tt.p.rapidapi.com'
}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on('data', function (chunk) {
chunks.push(chunk);
});
res.on('end', function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.end();
Imgur
Premium
Discover the magic of the internet at Imgur, a community powered entertainment destination. Lift your spirits with funny jokes, trending memes, entertaining gifs, inspiring stories, viral videos, and so much more.
curl --location 'https://api.imgur.com/oauth2/token' \
--form 'refresh_token="{{refreshToken}}"' \
--form 'client_id="{{clientId}}"' \
--form 'client_secret="{{clientSecret}}"' \
--form 'grant_type="refresh_token"'
var axios = require('axios');
var FormData = require('form-data');
var data = new FormData();
data.append('refresh_token', '{{refreshToken}}');
data.append('client_id', '{{clientId}}');
data.append('client_secret', '{{clientSecret}}');
data.append('grant_type', 'refresh_token');
var config = {
method: 'post',
maxBodyLength: Infinity,
url: 'https://api.imgur.com/oauth2/token',
headers: {
...data.getHeaders()
},
data : data
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});
var formdata = new FormData();
formdata.append("refresh_token", "{{refreshToken}}");
formdata.append("client_id", "{{clientId}}");
formdata.append("client_secret", "{{clientSecret}}");
formdata.append("grant_type", "refresh_token");
var requestOptions = {
method: 'POST',
body: formdata,
redirect: 'follow'
};
fetch("https://api.imgur.com/oauth2/token", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));
JoJ Unlimited Web Search
Free
Coming Soon!
CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET");
curl_easy_setopt(hnd, CURLOPT_URL, "https://joj-unlimited-web-search.p.rapidapi.com/?query=Nike&limit=10&related_keywords=true");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "X-RapidAPI-Key: SIGN-UP-FOR-KEY");
headers = curl_slist_append(headers, "X-RapidAPI-Host: joj-unlimited-web-search.p.rapidapi.com");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);
CURLcode ret = curl_easy_perform(hnd);
import http.client
conn = http.client.HTTPSConnection("joj-unlimited-web-search.p.rapidapi.com")
headers = {
'X-RapidAPI-Key': "SIGN-UP-FOR-KEY",
'X-RapidAPI-Host': "joj-unlimited-web-search.p.rapidapi.com"
}
conn.request("GET", "/?query=Nike&limit=10&related_keywords=true", headers=headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
const http = require('https');
const options = {
method: 'GET',
hostname: 'joj-unlimited-web-search.p.rapidapi.com',
port: null,
path: '/?query=Nike&limit=10&related_keywords=true',
headers: {
'X-RapidAPI-Key': 'SIGN-UP-FOR-KEY',
'X-RapidAPI-Host': 'joj-unlimited-web-search.p.rapidapi.com'
}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on('data', function (chunk) {
chunks.push(chunk);
});
res.on('end', function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.end();
Aka
Premium
Coming Soon!
CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "POST");
curl_easy_setopt(hnd, CURLOPT_URL, "https://aka1.p.rapidapi.com/v2/web");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "content-type: application/json");
headers = curl_slist_append(headers, "X-RapidAPI-Key: SIGN-UP-FOR-KEY");
headers = curl_slist_append(headers, "X-RapidAPI-Host: aka1.p.rapidapi.com");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);
curl_easy_setopt(hnd, CURLOPT_POSTFIELDS, "{\n \"url\": \"https://www.gamestop.de\",\n \"abck\": \"6A98579DE98B2029018B418D86217D01~-1~YAAQplozuOFZ77R9AQAAR9ZM+wf9etfjkfdQUfPuoN1yY5WGM3+hJ2I8FaNcOZxmsC25bvzqklRbt3zLNR5azYzBzm0EIodlGZfYHbKD+XnuSPbaue6xrqW2/ehL17O4FS6du6/oTQ76XYzSy8V+H33QZpr5xSN5Og9PuwZIXN6a2yW4eheizE6AAyVnqLkd4rikJzs7huoDQb+PumN9aGTQltSo8Ph9eLVFQ7G9zhTLHSrn6d61knMkIifqtn+YDSqAvjEZ2BFObKQPxWtfUAuuPOratmjs26fbqyTVW/Wn3qouC3aY5YosA6z/ez7hHtS8WFe29Jw5iqpWs1ay47ki6p4OffbqIQLdeZPnEtlohOBdxJpo9ayczVKNaKYulPU+gqud6zjGzg0=~-1~-1~1640602210\",\n \"bm_sz\": \"9B06C4CFFAAC8880AD83F4DBEEB03C43~YAAQplozuNtZ77R9AQAAzc9M+w7h7w8fOAn+5PtMofA+5WMqre5QHO1ZeAjASICQwlWz6cUDOssnEKR9oldoL0fGH/X4hmak1bysxZwdtQVstpFTLMwfCLkq9iBpM2mYfi4vaN90hgoN32YQBlWhnScQ2deTrwr/8RXeoVLR0fgfuRM4XPLoakQsY+8RBDoxJ0bFSLvWnI1aoahDfDCWVKPgdZc/P2ZMaOm6SAODgyncBETczl0/SzLOFvhYwTtvUfD4M4BpPFyoffwkNiQ9f3TI4CK4EQ72bUujhko91DD2WolZ~3748401~3425588\",\n \"scriptUrl\": \"https://www.gamestop.de/VLgzjx_WeXJf8LL_G5eV/aE3X2V3Gh7/O0EVBCJVAg/FAogaWs/aKR4B\",\n \"type\": 2,\n \"userAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36\",\n \"keyboard\": false\n}");
CURLcode ret = curl_easy_perform(hnd);
import http.client
conn = http.client.HTTPSConnection("aka1.p.rapidapi.com")
payload = "{\n \"url\": \"https://www.gamestop.de\",\n \"abck\": \"6A98579DE98B2029018B418D86217D01~-1~YAAQplozuOFZ77R9AQAAR9ZM+wf9etfjkfdQUfPuoN1yY5WGM3+hJ2I8FaNcOZxmsC25bvzqklRbt3zLNR5azYzBzm0EIodlGZfYHbKD+XnuSPbaue6xrqW2/ehL17O4FS6du6/oTQ76XYzSy8V+H33QZpr5xSN5Og9PuwZIXN6a2yW4eheizE6AAyVnqLkd4rikJzs7huoDQb+PumN9aGTQltSo8Ph9eLVFQ7G9zhTLHSrn6d61knMkIifqtn+YDSqAvjEZ2BFObKQPxWtfUAuuPOratmjs26fbqyTVW/Wn3qouC3aY5YosA6z/ez7hHtS8WFe29Jw5iqpWs1ay47ki6p4OffbqIQLdeZPnEtlohOBdxJpo9ayczVKNaKYulPU+gqud6zjGzg0=~-1~-1~1640602210\",\n \"bm_sz\": \"9B06C4CFFAAC8880AD83F4DBEEB03C43~YAAQplozuNtZ77R9AQAAzc9M+w7h7w8fOAn+5PtMofA+5WMqre5QHO1ZeAjASICQwlWz6cUDOssnEKR9oldoL0fGH/X4hmak1bysxZwdtQVstpFTLMwfCLkq9iBpM2mYfi4vaN90hgoN32YQBlWhnScQ2deTrwr/8RXeoVLR0fgfuRM4XPLoakQsY+8RBDoxJ0bFSLvWnI1aoahDfDCWVKPgdZc/P2ZMaOm6SAODgyncBETczl0/SzLOFvhYwTtvUfD4M4BpPFyoffwkNiQ9f3TI4CK4EQ72bUujhko91DD2WolZ~3748401~3425588\",\n \"scriptUrl\": \"https://www.gamestop.de/VLgzjx_WeXJf8LL_G5eV/aE3X2V3Gh7/O0EVBCJVAg/FAogaWs/aKR4B\",\n \"type\": 2,\n \"userAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36\",\n \"keyboard\": false\n}"
headers = {
'content-type': "application/json",
'X-RapidAPI-Key': "SIGN-UP-FOR-KEY",
'X-RapidAPI-Host': "aka1.p.rapidapi.com"
}
conn.request("POST", "/v2/web", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
const http = require('https');
const options = {
method: 'POST',
hostname: 'aka1.p.rapidapi.com',
port: null,
path: '/v2/web',
headers: {
'content-type': 'application/json',
'X-RapidAPI-Key': 'SIGN-UP-FOR-KEY',
'X-RapidAPI-Host': 'aka1.p.rapidapi.com'
}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on('data', function (chunk) {
chunks.push(chunk);
});
res.on('end', function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.write(JSON.stringify({
url: 'https://www.gamestop.de',
abck: '6A98579DE98B2029018B418D86217D01~-1~YAAQplozuOFZ77R9AQAAR9ZM+wf9etfjkfdQUfPuoN1yY5WGM3+hJ2I8FaNcOZxmsC25bvzqklRbt3zLNR5azYzBzm0EIodlGZfYHbKD+XnuSPbaue6xrqW2/ehL17O4FS6du6/oTQ76XYzSy8V+H33QZpr5xSN5Og9PuwZIXN6a2yW4eheizE6AAyVnqLkd4rikJzs7huoDQb+PumN9aGTQltSo8Ph9eLVFQ7G9zhTLHSrn6d61knMkIifqtn+YDSqAvjEZ2BFObKQPxWtfUAuuPOratmjs26fbqyTVW/Wn3qouC3aY5YosA6z/ez7hHtS8WFe29Jw5iqpWs1ay47ki6p4OffbqIQLdeZPnEtlohOBdxJpo9ayczVKNaKYulPU+gqud6zjGzg0=~-1~-1~1640602210',
bm_sz: '9B06C4CFFAAC8880AD83F4DBEEB03C43~YAAQplozuNtZ77R9AQAAzc9M+w7h7w8fOAn+5PtMofA+5WMqre5QHO1ZeAjASICQwlWz6cUDOssnEKR9oldoL0fGH/X4hmak1bysxZwdtQVstpFTLMwfCLkq9iBpM2mYfi4vaN90hgoN32YQBlWhnScQ2deTrwr/8RXeoVLR0fgfuRM4XPLoakQsY+8RBDoxJ0bFSLvWnI1aoahDfDCWVKPgdZc/P2ZMaOm6SAODgyncBETczl0/SzLOFvhYwTtvUfD4M4BpPFyoffwkNiQ9f3TI4CK4EQ72bUujhko91DD2WolZ~3748401~3425588',
scriptUrl: 'https://www.gamestop.de/VLgzjx_WeXJf8LL_G5eV/aE3X2V3Gh7/O0EVBCJVAg/FAogaWs/aKR4B',
type: 2,
userAgent: 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',
keyboard: false
}));
req.end();
SportScore
Free
Coming Soon!
CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET");
curl_easy_setopt(hnd, CURLOPT_URL, "https://sportscore1.p.rapidapi.com/sports/1/teams?page=1");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "X-RapidAPI-Key: SIGN-UP-FOR-KEY");
headers = curl_slist_append(headers, "X-RapidAPI-Host: sportscore1.p.rapidapi.com");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);
CURLcode ret = curl_easy_perform(hnd);
import http.client
conn = http.client.HTTPSConnection("sportscore1.p.rapidapi.com")
headers = {
'X-RapidAPI-Key': "SIGN-UP-FOR-KEY",
'X-RapidAPI-Host': "sportscore1.p.rapidapi.com"
}
conn.request("GET", "/sports/1/teams?page=1", headers=headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
const axios = require('axios');
const options = {
method: 'GET',
url: 'https://sportscore1.p.rapidapi.com/sports/1/teams',
params: {page: '1'},
headers: {
'X-RapidAPI-Key': 'SIGN-UP-FOR-KEY',
'X-RapidAPI-Host': 'sportscore1.p.rapidapi.com'
}
};
try {
const response = await axios.request(options);
console.log(response.data);
} catch (error) {
console.error(error);
}
NLP Translation
Premium
NLP Translation is a high quality neural machine translation (NMT) that utilizes over 110 languages.
curl "https://api.nlpcloud.io/v1/bart-large-cnn/summarization" \
-H "Authorization: Token 4eC39HqLyjWDarjtT1zdp7dc" \
-H "Content-Type: application/json" \
-X POST \
-d '{"text":"One month after the United States began what has become a troubled rollout of a national COVID vaccination campaign, the effort is finally gathering real steam. Close to a million doses -- over 951,000, to be more exact -- made their way into the arms of Americans in the past 24 hours, the U.S. Centers for Disease Control and Prevention reported Wednesday. That s the largest number of shots given in one day since the rollout began and a big jump from the previous day, when just under 340,000 doses were given, CBS News reported. That number is likely to jump quickly after the federal government on Tuesday gave states the OK to vaccinate anyone over 65 and said it would release all the doses of vaccine it has available for distribution. Meanwhile, a number of states have now opened mass vaccination sites in an effort to get larger numbers of people inoculated, CBS News reported."}'
import nlpcloud
client = nlpcloud.Client("bart-large-cnn", "4eC39HqLyjWDarjtT1zdp7dc")
# Returns a json object.
client.summarization("""One month after the United States began what has become a
troubled rollout of a national COVID vaccination campaign, the effort is finally
gathering real steam. Close to a million doses -- over 951,000, to be more exact --
made their way into the arms of Americans in the past 24 hours, the U.S. Centers
for Disease Control and Prevention reported Wednesday. That s the largest number
of shots given in one day since the rollout began and a big jump from the
previous day, when just under 340,000 doses were given, CBS News reported.
That number is likely to jump quickly after the federal government on Tuesday
gave states the OK to vaccinate anyone over 65 and said it would release all
the doses of vaccine it has available for distribution. Meanwhile, a number
of states have now opened mass vaccination sites in an effort to get larger
numbers of people inoculated, CBS News reported.""")
const NLPCloudClient = require('nlpcloud');
const client = new NLPCloudClient('bart-large-cnn','4eC39HqLyjWDarjtT1zdp7dc')
// Returns an Axios promise with the results.
// In case of success, results are contained in `response.data`.
// In case of failure, you can retrieve the status code in `err.response.status`
// and the error message in `err.response.data.detail`.
client.summarization(`One month after the United States began what has become a
troubled rollout of a national COVID vaccination campaign, the effort is finally
gathering real steam. Close to a million doses -- over 951,000, to be more exact --
made their way into the arms of Americans in the past 24 hours, the U.S. Centers
for Disease Control and Prevention reported Wednesday. That s the largest number
of shots given in one day since the rollout began and a big jump from the
previous day, when just under 340,000 doses were given, CBS News reported.
That number is likely to jump quickly after the federal government on Tuesday
gave states the OK to vaccinate anyone over 65 and said it would release all
the doses of vaccine it has available for distribution. Meanwhile, a number
of states have now opened mass vaccination sites in an effort to get larger
numbers of people inoculated, CBS News reported.`)
.then(function (response) {
console.log(response.data);
})
.catch(function (err) {
console.error(err.response.status);
console.error(err.response.data.detail);
});