OneSchema’s external API is used to fetch and edit data inside of your OneSchema portal via code.

External API Setup

Obtaining an API Key

In order to make API requests you will need to authenticate with an API key.

You can obtain an API key by going to the Settings page and clicking "Generate New API Key":

The page will then display your newly generated API key. Store it in a secure place because you will not be able to view the entire key again once you leave the page.

But if you do need a new key, you can simply click "Generate New API Key" again, at which point the old key will be invalidated.

Making Requests to OneSchema

API requests are made through the api.oneschema.co subdomain, irrespective of your own organization's subdomain. Requests are authenticated using either the Header X-API-KEY or using HTTP Basic Authentication.

When using the API Key header, use your API key as the value of the X-API-KEY header. When using HTTP Basic Authentication create your Base64 encoded value by encoding your API key as the password, and an empty username, e.g :<API_KEY>

Once you have an API key you can test that it works either by using the "Try It!" playground included in our API reference pages, or by making the following curl request to our whoami endpoint:

API_KEY=RmAXu+...
curl https://api.oneschema.co/whoami -u ":$API_KEY"
{"user": "Your Name","org": "Your Company"}

Making Requests to Embeds

If you are creating embeds via our Create an Embedded Session API, all of our external API endpoints take in embed_id as a query parameter that can be used to execute the API request in the context of an embed.