Subscriptions
Get my subscription
GET
/api/v1/subscriptions/meReturns the signed-in seller's current subscription.
Requires Authorization
SELLER only
Session
Request
curl --request GET \
--url https://api.swiftgoma.com/api/v1/subscriptions/me \
--header 'Authorization: Bearer <access_token>'200Example response
{
"success": true,
"data": {
"id": "sub_9c8d7e",
"sellerProfileId": "sp_2b3c4d",
"planId": "plan_starter",
"billingCycle": "MONTHLY",
"currency": "USD",
"status": "ACTIVE",
"currentPeriodStart": "2026-02-01T00:00:00.000Z",
"currentPeriodEnd": "2026-03-01T00:00:00.000Z"
}
}