Skip to main content
GET
/
test_framework
/
billing
/
payment-history
Get payment history
curl --request GET \
  --url https://api.cekura.ai/test_framework/billing/payment-history/ \
  --header 'X-CEKURA-API-KEY: <api-key>'
[
  {
    "id": 123,
    "amount": "<string>",
    "currency": "<string>",
    "description": "<string>",
    "stripe_payment_intent_id": "<string>",
    "created_at": "2023-11-07T05:31:56Z"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.cekura.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-CEKURA-API-KEY
string
header
required

API Key Authentication. It should be included in the header of each request.

Query Parameters

organization_id
integer
required

Organization ID

Response

id
integer
read-only
amount
string
read-only
currency
string | null

Currency code (e.g. USD, INR)

Maximum string length: 10
payment_type
enum<string> | null

Type of payment (auto_pay or one_time_payment)

  • auto_pay - Auto Pay
  • one_time_payment - One-Time Payment
  • self_serve_credits - Self-Serve Credits
  • self_serve_member_seat - Self-Serve Member Seat
  • subscription - Subscription
  • subscription_member_seat - Subscription Member Seat
Available options:
auto_pay,
one_time_payment,
self_serve_credits,
self_serve_member_seat,
subscription,
subscription_member_seat,
null
description
string

Payment description or notes

stripe_payment_intent_id
string | null

Stripe Payment Intent ID for tracking

Maximum string length: 255
created_at
string<date-time>
read-only