Speakeasy · Example Payload

Speakeasy Get Organizations Example

Example request and response for listing all organizations the authenticated user belongs to

AIDocumentationMCPPlatformSDKsTerraformTesting

Speakeasy Get Organizations Example is an example object payload from Speakeasy, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

titledescriptionrequestresponse

Example Payload

Raw ↑
{
  "title": "Get Organizations for a User",
  "description": "Example request and response for listing all organizations the authenticated user belongs to",
  "request": {
    "method": "GET",
    "url": "https://api.prod.speakeasy.com/v1/organizations",
    "headers": {
      "x-api-key": "your-speakeasy-api-key"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": [
      {
        "id": "org_01HABC",
        "name": "Acme Corp",
        "slug": "acme-corp",
        "account_type": "scale-up",
        "telemetry_disabled": false,
        "sso_activated": false,
        "sso_connection_id": null,
        "free_trial_expiry": null,
        "internal": false,
        "created_at": "2024-01-10T08:00:00Z",
        "updated_at": "2026-04-01T09:00:00Z"
      }
    ]
  }
}