Docs / Quick Start
Quick Start
Step-by-step guide to making your first request against the Nasah API.
The Nasah API lives at https://api.nasahgroup.com. Public data — products and blog posts — needs no API key at all.
curl https://api.nasahgroup.com/v1/products
That returns:
{
"data": [
{ "id": "1", "name": "Nasah Apps", "status": "live", "href": "..." }
]
}
From JavaScript
const res = await fetch("https://api.nasahgroup.com/v1/products");
const { data } = await res.json();
From Python
import requests
res = requests.get("https://api.nasahgroup.com/v1/products")
data = res.json()["data"]
Next steps
- See Products API for the full field reference.
- If you need to know which user is calling, see Authentication.