Miscellaneous

Both of the miscellaneous endpoints are public and do not require a Pro account.


GET /hello

Public endpoint. Provides a simple way to test a GET endpoint.

Endpoint Example

Below is a live example that can be copy and pasted.

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"
  }
}

POST /hello

Public endpoint. Provides a simple way to test a POST endpoint.

Endpoint Example

Below is a live example that can be copy and pasted.

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

Below is the expected result from that cURL call:

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