Pricing tiers
PingRep offers three tiers designed around how you use your AI Representative. Every account starts on the Free tier with no credit card required.
| Feature | Free | Pro ($12/mo) | Max ($29/mo) |
|---|---|---|---|
| Professional profile | 1 | 1 | Up to 5 |
| AI Representative | Basic | Enhanced | Advanced |
| Analytics | None | Full analytics | Advanced analytics |
| Calendly integration | No | Yes | Yes |
| Directory listing | Standard | Priority | Priority |
Annual billing
Save up to 20% when you choose annual billing. Both Pro and Max tiers support monthly and annual billing intervals.
Check billing status
Retrieve the current billing status and active tier for the authenticated user.
/api/v1/billing/statusReturns the user's current subscription tier, billing interval, and renewal date.
Get pricing info
Fetch the current pricing for all tiers without authentication. Useful for displaying pricing on your own pages.
/api/v1/billing/pricingReturns pricing details for all tiers including currency options.
Create a checkout session
Start a new subscription by creating a Stripe checkout session. The response includes a URL to redirect the user to Stripe for payment.
/api/v1/billing/checkoutCreates a Stripe checkout session and returns the checkout URL.
Request body:
tierstringRequiredThe subscription tier to purchase. Must be "pro" or "max".
currencystringRequiredPayment currency. Supported values: "USD", "AED", "EUR", "GBP".
billingIntervalstringRequiredBilling frequency. Must be "monthly" or "annual".
uiModestringRequiredStripe checkout UI mode. Use "hosted" for redirect or "embedded" for inline.
paymentMethodstringRequiredPayment method type. Supported values: "card" or "gcash".
Verify checkout
After the user completes the Stripe checkout flow, verify the session to activate their subscription.
/api/v1/billing/verify-checkoutVerifies a completed Stripe checkout session and activates the subscription.
Manage subscription
Customer portal
Redirect users to the Stripe customer portal where they can update payment methods, view invoices, and change plans.
/api/v1/billing/portalReturns a URL to the Stripe customer portal for the authenticated user.
Cancel subscription
Cancel the active subscription. The user retains access until the end of the current billing period.
/api/v1/billing/cancelCancels the active subscription at the end of the current billing period.
Cancellation is not immediate
The user keeps their tier benefits until the current billing period ends. After that, the account reverts to the Free tier.
Supported currencies
| Currency | Code | Payment methods |
|---|---|---|
| US Dollar | USD | Card |
| UAE Dirham | AED | Card |
| Euro | EUR | Card |
| British Pound | GBP | Card |
| Philippine Peso | PHP | GCash |
GCash support
GCash is available for users in the Philippines. Select "paymentMethod": "gcash" during checkout to enable it.