Miscellaneous

The miscellaneous endpoints are public and do not require an API key.


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://www.piperiv.com/api/v1/hello -u "demo:pr_api_prod_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://www.piperiv.com/api/v1/hello -u "demo:pr_api_prod_01234demo56789_key" -d "name=Friend"

Below is the expected result from that cURL call:

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