API Documentation
Complete guide with interactive testing
Getting Started
Authentication
Include your API key in the request header:
X-API-Key: your_api_key_here
Login to auto-fill your API key
π Alibaba Search
2 tokens
GET
/api/v1/search
Search products on Alibaba marketplace
Parameters:
q(required) - Search querypage(optional) - Page number (default: 1)
Code Examples:
curl -X GET "https://raid-api.com/api/v1/search?q=laptop&page=1" \
-H "X-API-Key: your_api_key_here"
import requests
url = "https://raid-api.com/api/v1/search"
headers = {"X-API-Key": "your_api_key_here"}
params = {"q": "laptop", "page": 1}
response = requests.get(url, headers=headers, params=params)
data = response.json()
print(data)
const url = 'https://raid-api.com/api/v1/search?q=laptop&page=1';
const response = await fetch(url, {
headers: {'X-API-Key': 'your_api_key_here'}
});
const data = await response.json();
console.log(data);
Try It Out
Response:
π¦ Alibaba Product Details
3 tokens
GET
/api/v1/product-details
Get detailed information about a specific Alibaba product
Code Examples:
curl -X GET "https://raid-api.com/api/v1/product-details?url=PRODUCT_URL" \
-H "X-API-Key: your_api_key_here"
import requests
url = "https://raid-api.com/api/v1/product-details"
headers = {"X-API-Key": "your_api_key_here"}
params = {"url": "PRODUCT_URL"}
response = requests.get(url, headers=headers, params=params)
data = response.json()
print(data)
const url = 'https://raid-api.com/api/v1/product-details?url=PRODUCT_URL';
const response = await fetch(url, {
headers: {'X-API-Key': 'your_api_key_here'}
});
const data = await response.json();
console.log(data);
Try It Out
Response:
π Google Lens
5 tokens
GET
/api/v1/google-lens/search
Find similar products using Google Lens image recognition
Code Examples:
curl -X GET "https://raid-api.com/api/v1/google-lens/search?query_url=IMAGE_URL" \
-H "X-API-Key: your_api_key_here"
import requests
url = "https://raid-api.com/api/v1/google-lens/search"
headers = {"X-API-Key": "your_api_key_here"}
params = {"query_url": "IMAGE_URL"}
response = requests.get(url, headers=headers, params=params)
data = response.json()
print(data)
const url = 'https://raid-api.com/api/v1/google-lens/search?query_url=IMAGE_URL';
const response = await fetch(url, {
headers: {'X-API-Key': 'your_api_key_here'}
});
const data = await response.json();
console.log(data);
Try It Out
Response:
πΌοΈ Bing Visual Search
4 tokens
GET
/api/v1/bing/search
Search similar images using Bing visual search
Code Examples:
curl -X GET "https://raid-api.com/api/v1/bing/search?query_url=IMAGE_URL" \
-H "X-API-Key: your_api_key_here"
import requests
url = "https://raid-api.com/api/v1/bing/search"
headers = {"X-API-Key": "your_api_key_here"}
params = {"query_url": "IMAGE_URL"}
response = requests.get(url, headers=headers, params=params)
data = response.json()
print(data)
const url = 'https://raid-api.com/api/v1/bing/search?query_url=IMAGE_URL';
const response = await fetch(url, {
headers: {'X-API-Key': 'your_api_key_here'}
});
const data = await response.json();
console.log(data);
Try It Out
Response:
π Made-in-China Search
2 tokens
GET
/api/v1/made-in-china/search
Search products on Made-in-China marketplace
Code Examples:
curl -X GET "https://raid-api.com/api/v1/made-in-china/search?q=electronics&page=1" \
-H "X-API-Key: your_api_key_here"
import requests
url = "https://raid-api.com/api/v1/made-in-china/search"
headers = {"X-API-Key": "your_api_key_here"}
params = {"q": "electronics", "page": 1}
response = requests.get(url, headers=headers, params=params)
data = response.json()
print(data)
const url = 'https://raid-api.com/api/v1/made-in-china/search?q=electronics&page=1';
const response = await fetch(url, {
headers: {'X-API-Key': 'your_api_key_here'}
});
const data = await response.json();
console.log(data);
Try It Out
Response:
π¨ Etsy Search
2 tokens
GET
/api/v1/etsy/search
Search handmade and vintage products on Etsy
Code Examples:
curl -X GET "https://raid-api.com/api/v1/etsy/search?q=jewelry&page=1" \
-H "X-API-Key: your_api_key_here"
import requests
url = "https://raid-api.com/api/v1/etsy/search"
headers = {"X-API-Key": "your_api_key_here"}
params = {"q": "jewelry", "page": 1}
response = requests.get(url, headers=headers, params=params)
data = response.json()
print(data)
const url = 'https://raid-api.com/api/v1/etsy/search?q=jewelry&page=1';
const response = await fetch(url, {
headers: {'X-API-Key': 'your_api_key_here'}
});
const data = await response.json();
console.log(data);
Try It Out
Response:
π° Crypto News
1 token
GET
/api/v1/news/{source}
Get latest cryptocurrency news from various sources
Available sources: coindesk, cointelegraph, cryptoslate, decrypt, newsbtc, cryptopotato, bitcoinist, cryptobriefing, blockonomi, coinjournal
Code Examples:
curl -X GET "https://raid-api.com/api/v1/news/coindesk" \
-H "X-API-Key: your_api_key_here"
import requests
url = "https://raid-api.com/api/v1/news/coindesk"
headers = {"X-API-Key": "your_api_key_here"}
response = requests.get(url, headers=headers)
data = response.json()
print(data)
const url = 'https://raid-api.com/api/v1/news/coindesk';
const response = await fetch(url, {
headers: {'X-API-Key': 'your_api_key_here'}
});
const data = await response.json();
console.log(data);
Try It Out
Response: