Every API, one clean contract.
98 APIs · all speak the same { ok, data, meta, error }envelope. Search, filter, and open one to see endpoints, params & live examples.
Popular
Reputation & Reviews
8 APIsE-commerce & Marketplaces
20 APIsReal Estate
5 APIsJobs & Hiring
6 APIsTravel & Lodging
5 APIsSearch & SEO
4 APIsFinance & Data
3 APIsMedia, Film & Knowledge
15 APIsUtilities & AI
11 APIsClassifieds & Second-hand
4 APIsDeveloper Tools
11 APIsURL Resolver
livepost/url-resolver/v1/resolve1 creditFollow the redirect chain to the final URL (hop-by-hop, every status observable).
{
"url": "http://github.com"
}Try in playground →post/url-resolver/v1/normalize1 creditResolve then strip tracking params (utm_*/fbclid/gclid…) → canonical URL.
{
"url": "https://www.example.com/?utm_source=a&fbclid=b&id=42",
"follow": false
}Try in playground →post/url-resolver/v1/detect_affiliate1 creditDetect the affiliate network/params/merchant across the whole redirect chain.
{
"url": "https://www.amazon.com/dp/B08N5WRWNW?tag=myaff-20",
"follow": false
}Try in playground →post/url-resolver/v1/product_hint1 creditIdentify marketplace + product-id + the ReefAPI engine that can fetch the product.
{
"url": "https://www.amazon.com/dp/B08N5WRWNW",
"follow": false
}Try in playground →post/url-resolver/v1/preview1 creditLink unfurl: OpenGraph + Twitter-card title/description/image/favicon (Slack/Discord style).
{
"url": "https://www.example.com/"
}Try in playground →post/url-resolver/v1/safety1 creditHeuristic URL-risk flags (ip-host, non-https, punycode, userinfo, high-abuse TLD, long/multi-shortener chain, cross-domain) + risk level/score.
{
"url": "https://www.amazon.com/dp/B08N5WRWNW"
}Try in playground →post/url-resolver/v1/full1 creditOne call: resolve + normalize + detect_affiliate + product_hint + preview + safety.
{
"url": "https://www.amazon.com/dp/B08N5WRWNW?tag=aff-20&utm_source=x"
}Try in playground →post/url-resolver/v1/batch1 creditResolve up to 20 URLs concurrently in one call (each independently SSRF-guarded).
{
"urls": [
"http://github.com",
"https://www.example.com/?utm_source=z"
]
}Try in playground →
Social Media
6 APIs