Skip to main content
Endpoint Request
POST /customers
curl
curl -X POST "https//api.spendjuice.com/customers" \
-H "Authorization: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
      "first_name": "James",
      "last_name": "Okafor",
      "email": "[email protected]",
      "phone": "+2348012345678",
      "type": "business | individual",
      "billing_address": {
        "line1": "123 Test Lane",
        "line2": "Suite 456",
        "city": "Lagos",
        "state": "Lagos",
        "zip_code": "100001",
        "country": "NG"
      }
    }'
Response
{
  "data": {
    "id": "7da75a46-a1bc-11ee-9a32-560f156a658b",
    "status": "pending_kyc",
    "created_at": "2025-09-22T09:01:09Z"
  }
}