---
title: "List org social/platform accounts"
method: GET
path: "/orgs/{slug}/accounts"
tags: ["Orgs"]
---

# List org social/platform accounts

`GET /orgs/{slug}/accounts`

Returns the org's registered accounts (GitHub, Twitter, LinkedIn, etc.) as a paginated list. Pass `?platform=<name>` to fetch a single account by platform — returns the account object or `null` when not set. When the org holds multiple accounts for the platform, single-mode returns the oldest-linked one deterministically; use the full list (omit `?platform`) to retrieve them all. The 200 schema is a union of the paginated list (default) or a single `OrgAccountItem`/`null` (single-mode) — the OSS CLI depends on the single-row return shape.

## Path parameters

- `slug` string, required

## Query parameters

- `platform` string

## Response `200`

Paginated org accounts (default), or a single `OrgAccountItem`/`null` when `?platform=` is supplied

- union
  - object
    - `items` object[], required
      - `platform` string, required
      - `handle` string, required
    - `pagination` object, required
      - `page` integer, required
      - `pageSize` integer, required
      - `returned` integer, required
      - `totalItems` integer
      - `totalPages` integer
      - `hasMore` boolean, required
  - object
    - `platform` string, required
    - `handle` string, required

## Other responses

- `404` — Organization not found

---

[API](https://skmtc.net/releases/apis/releases-api.md) · [All operations](https://skmtc.net/releases/apis/releases-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/releases/releases-api/versions/168e32061f53/schema)
