API Documentation

Complete guide with interactive testing

Getting Started

1. Register to get 1,000 free tokens

2. Find your API key in the dashboard

3. Test endpoints directly on this page using the "Try it" buttons below

Authentication

Include your API key in the request header:

X-API-Key: your_api_key_here

Login to auto-fill your API key

πŸ“¦ 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:

🏭 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:

πŸ“° 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: