Check Subscription Status

πŸ” Check the Status of a Subscription

Use this endpoint to get the current state of a subscription.

πŸ”§ Endpoint

POST /subscription/status

πŸ“₯ Request Body

FieldTypeDescription
track_idstringUnique identifier of the subscription

βœ… Example Request

{
  "track_id": "a1b2c3d4-e5f6-7890-g1h2-i3j4k5l6m7n8"
}

πŸ“€ Response

βœ… Example Success Response

{
  "status": "active",
  "track_id": "a1b2c3d4-e5f6-7890-g1h2-i3j4k5l6m7n8"
}

❌ Example Error Response

{
  "detail": "Subscription not found, track_id: invalid_track_123"
}