Skip to main content
Retrieve details about a specific organization.

GET /orgs/:id

Path Parameters

ParameterTypeRequiredDescription
idstringYesThe unique ID or alias of the organization.

Response

ParameterTypeDescription
orgobjectThe organization details.

Example

curl -X GET https://api.blobhub.io/v1/orgs/acme-corp
{
  "org": {
    "id": "org_123456",
    "alias": "acme-corp",
    "name": "Acme Corp",
    "role": "admin"
  }
}