OpenAPI Specification

AEBPV API Reference

Base URL: https://aebpv.shadowclouds.online/v1 • All endpoints (except /health) require Authorization: Bearer aebpv_test_...

Endpoints (8)

POST/v1/verifications

Create Verification Session

Initiate a new payment verification session for a customer.

Request Body (JSON)
{
  "name": "RISHAV",
  "amount": 299,
  "expires_in": 300,
  "callback_url": "https://billing.example.com/webhooks/payment"
}
Response (200 / 201 JSON)
{
  "object": "verification",
  "id": "vrf_304cf5eec592",
  "name": "RISHAV",
  "amount": 299,
  "status": "pending",
  "created_at": "2026-09-13T14:00:00.000Z",
  "expires_at": "2026-09-13T14:05:00.000Z",
  "session_age": 0,
  "remaining_seconds": 300,
  "remaining_minutes": 5,
  "callback_url": "https://billing.example.com/webhooks/payment"
}
Test live in dashboard:Open in API Playground ↗