Skip to main content

Authentication โ€” Zero Setup

Nucleus is a public API. No API keys, no tokens, no OAuth, no sign-up.

curl "https://apiw.proxynex.pro/fuel?fuel=diesel&city=mumbai"

What you getโ€‹

FeatureValue
AuthenticationโŒ None required
CORSAccess-Control-Allow-Origin: *
TransportHTTPS only
Rate limitsGenerous (see Rate limits)

CORSโ€‹

All responses include CORS headers, so you can call Nucleus directly from browser JavaScript:

const res = await fetch("https://apiw.proxynex.pro/crypto?coin=bitcoin");
const data = await res.json();
console.log(data.data.bitcoin.inr);