Quickstart

This quickstart gets you up and running with the Ping API. We'll cover where to find your API keys, choosing a client, and making your first request.

# cURL is most likely already installed on your machine
curl --version

Making your first API request

Here is an example of listing businesses using a bearer token. Note the API host: api.ping.co.zw.

GET
/v1/get/businesses
curl -G https://api.ping.co.zw/v1/get/businesses \
  -H "Authorization: Bearer {accessToken}" \
  -H "User-Type: user" \
  -d limit=10

What's next?

After your first call, explore these sections:

  • Notifications » /messages and /notification (see sidebar)
  • Authentication reference: /authentication

Was this page helpful?