The catalog
Every API, one clean contract.
64 APIs · all speak the same { ok, data, meta, error }envelope. Search, filter, and open one to see endpoints, params & live examples.
Reputation & Reviews
8 APIsE-commerce & Marketplaces
13 APIsReal Estate
5 APIsJobs & Hiring
6 APIsTravel & Lodging
5 APIsSearch & SEO
4 APIsFinance & Data
3 APIsMedia, Social & Knowledge
13 APIsUtilities & AI
7 APIsText Embeddings
live/embeddings · 2 endpoints
post/embeddings/v1/embed1 credittext -> dense embedding vector(s). input = a string OR a list of strings (Qwen3-Embedding-4B, 2560-dim, multilingual). Returns embeddings[] + dim + usage.
input*model
{
"input": [
"best coffee shop reviews near me"
]
}Try in playground →post/embeddings/v1/rerank1 creditrerank documents by relevance to a query (BGE-reranker-v2-m3 cross-encoder, multilingual). params: query (str) + documents (list of str). Returns ranked results[{index, relevance_score}] (most-relevant first).
query*documents*modeltop_n
{
"query": "best coffee shop near me",
"documents": [
"A cozy cafe with award-winning espresso",
"An auto repair garage",
"The top-rated coffee place downtown"
]
}Try in playground →