Quick Start

Once you’ve set up your Prahsys account, you can use your unique authentication keys to start making requests and building integrations with our platform.

Validate Authentication

Send Request

Copy and paste the request below to your terminal or Postman to validate your authentication.

Make sure to update your API key in the request.

Request

bash
curl --request GET \
  --url https://api.prahsys.com/merchant/status \
  --header 'Authorization: Bearer $PRAHSYS_API_KEY' \
  --header 'Content-Type: application/json'

Below is the example response you are looking for. If you did not get a 401 error, you are good to go!

Example Response

bash
{
  "success": true,
  "message": "API is operating normally",
  "data": {
    "version": "1.20.0",
    "status": "OPERATING"
  }
}`