Making Your First API Call
Once you have your credentials, the fastest way to verify everything is wired up correctly is to hit the /ping endpoint.
GET/v1/ping
Request
curl https://api.vaultspay.dev/v1/ping \
-H "Authorization: Bearer <your_access_token>"Response
200 OK
{
"data": {
"message": "Service is up and running!"
}
}