π/search-products
Available at https://api.theproductllm.com/search-products
/search-products
Required Parameters:
Optional Parameters:
Request
import requests
response = requests.post(
"https://api.theproductllm.com/search-products",
headers={"Authorization": "Bearer YOUR_API_KEY"},
json={
"product": {
"title":"This is a product title",
"description": "this is a product description" #optional
}
"site": "amazon.com",
"search_sequence":["standard","standard"]
}
)
print(response.json())
Response:
Last updated