Skip to main content
All Peere Network API requests require authentication using Bearer tokens. This guide covers how to obtain, use, and manage your API credentials securely.

API Key Types

Peere Network uses different API keys based on your role in the payment ecosystem:

Merchant Keys

For businesses accepting payments from customers

Bank Keys

For financial institutions managing customer accounts

Provider Keys

For payment processors managing multiple merchants

Getting Your API Keys

From the Dashboard

1

Log into Dashboard

Access your dashboard at dashboard.peere.network (live) or sandbox-dashboard.peere.network (sandbox)
2

Navigate to API Keys

Go to Settings > API Keys or Developer > API Management
3

Generate New Key

Click “Generate New API Key” and provide a descriptive name
4

Copy and Store Securely

Copy your API key immediately - it won’t be shown again
API keys are only displayed once during creation. Store them securely and never share them publicly.

Authentication Methods

Bearer Token Authentication

All API requests must include your API key in the Authorization header:
curl -X GET "https://api.peere.network/v1/merchant" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

API Key Management

Key Rotation

Regularly rotate your API keys for security:
1

Generate New Key

Create a new API key in the dashboard
2

Update Applications

Deploy the new key to all your applications
3

Test Functionality

Verify all integrations work with the new key
4

Revoke Old Key

Delete the old key from the dashboard