Authentication

Authentication is handled by passing your username and an API key to the endpoint using Basic Authentication.

An API key can be created by going to the API Keys page in your account.

Below is an example using cURL on the sandbox server using the `demo` user and the demo API key. This is a live example that you can copy and paste in your terminal.

curl https://sandbox.sellinpublic.com/api/v0/hello -u "demo:sip_api_sand_01234demo56789_key"

Below is the expected result from that cURL call:

{
  "status": "success",
  "messages": [],
  "meta": {},
  "data": {
    "name": "World"
  }
}