Skip to main content
GET
/
tickets
/
{ticketId}
Get ticket detail
curl --request GET \
  --url https://api.recurr.dev/v1/tickets/{ticketId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "tkt_01HQX...",
  "subscriber_id": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "subject": "<string>",
  "body": "<string>",
  "resolution_note": "<string>",
  "resolved_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Your Recurr secret API key as a Bearer token: Authorization: Bearer rk_live_….

Keys are environment-scoped — rk_live_ operates on live data, rk_test_ on isolated test data (see Test mode). Create, scope, and rotate keys in your dashboard (Settings → API keys, developer role). Secret keys are server-side only — never ship them in an app binary or client JavaScript.

Path Parameters

ticketId
string
required

Response

200 - application/json

Ticket

id
string
required
Example:

"tkt_01HQX..."

subscriber_id
string
required
topic
enum<string>
required
Available options:
billing_question,
refund_request,
plan_change,
cancel,
payment_issue,
other
status
enum<string>
required
Available options:
open,
resolved,
closed
created_at
string<date-time>
required
subject
string
body
string
source
enum<string>
Available options:
help_center,
billing_portal,
email_reply
priority
enum<string>
Available options:
normal,
high
resolution_note
string | null
resolved_at
string<date-time> | null