Skip to main content
GET
/
orgs
/
current
Get current organization
curl --request GET \
  --url https://api.rendobar.com/orgs/current
{
  "data": {
    "org": {
      "id": "org_abc123",
      "name": "Acme Corp",
      "slug": "acme-corp",
      "createdAt": 1707580800000
    },
    "subscription": {
      "planId": "pro",
      "status": "active",
      "provider": "polar",
      "currentPeriodStart": 1707580800000,
      "currentPeriodEnd": 1710259200000
    },
    "plan": {
      "id": "pro",
      "name": "Pro",
      "includedUsage": 49000000000,
      "includedUsageFormatted": "$49.00",
      "limits": {
        "concurrentJobs": 10,
        "apiRequestsPerMinute": 200,
        "maxJobTimeout": 900,
        "maxInputFileSize": 2147483648,
        "maxBatchSize": 50,
        "maxOverage": 98000000000
      },
      "features": {
        "rawFfmpeg": true,
        "mcp": true,
        "webhooks": true,
        "priorityQueue": true,
        "customProviders": false
      }
    },
    "balance": {
      "balance": 42500000000,
      "rollover": 5000000000,
      "balanceFormatted": "$42.50"
    }
  }
}

Response

Organization details retrieved successfully

data
object
required