Currently viewing the dev server.

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://api.piperiv.com/api/v1/hello -u "demo:pr_api_adv"

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

Below is the expected result from that cURL call:

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