Numeno Admin API
Introduction
Use the Numeno Administration API to create API Keys and set their permissions (which we call Scopes). This API is meant to be used by administrators of your organization.
Scopes
Scopes are used to let API Keys access only certain parts of the API.
Scopes are expressed as a string of the form api:resource:action
.
For example, from the Numeno Article Recommender API (art-rec
):
art-rec:feeds:read
- can read any Feed (eg.GET
/feeds
,/feeds/:id
,/feeds/:id/streams
, etc.)art-rec:feeds:write
- can write (and read) any Feedart-rec:feeds:*
- can perform any action on Feedsart-rec:*:read
- can read any resource onart-rec
*:*:*
- can do everything
Authentication
- API Key: ApiKeyAuth
Each Numeno API call identifies each of your requests by your unique API Key, which can be found on the Numeno Dashboard or using the Numeno Administration API.
All endpoints expect the API Key to be passed as an HTTP header:
curl -s -H 'X-Numeno-Key: YOUR_API_KEY' \
https://api.numeno.ai/admin/v1/keys
Important: when calling any public Numeno API, you should always use the secure HTTPS endpoint to protect your credentials.
Security Scheme Type: | apiKey |
---|---|
Header parameter name: | X-Numeno-Key |
Terms of Service
https://numeno.ai/terms/License
Apache 2.0