Skip to main content
GET
/
subscription
/
check
Check subscription status
curl --request GET \
  --url https://nanostudio.cloud/api/subscription/check \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "canTransform": true,
    "remainingTransformations": 123,
    "planName": "<string>",
    "nextResetDate": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Subscription status retrieved successfully

success
boolean
data
object