---
title: "List Orgs"
method: GET
path: "/orgs"
tags: ["Orgs"]
---

# List Orgs

`GET /orgs`

search for orgs using query parameters

## Query parameters

- `search` string[] — You know, for search
- `name` string[] — The account name
- `member` string[] — The username of a user
- `page` integer — Page number starting from 1
- `per-page` integer — Number of items per page

## Response `200`

Retrieved

- OrganizationList — A list response from a pagination request
  - `page` integer, required — The current page the pagination request is on
  - `per_page` integer, required — The number of pages per pagination request
  - `next_page` integer — The next page, if this on is not the last
  - `page_count` integer, required — The total number of pages
  - `total_count` integer, required — The total number of resources matching the list request
  - `resources` Organization[], required
    - `account_name` string — The unique name of the org in small case without spaces
    - `name` string — The display name for this org
    - `picture_url` string — URL to the picture associated with this org
    - `contact_email` string — The contact email for the Organization
    - `description` string — A description of the org
    - `id` string, required — The org ID
    - `owner` AccountPublic, required
      - `id` string, required
      - `account_type` string, required
      - `name` string, required
      - `display_name` string
      - `description` string
      - `picture_url` string — https://robohash.org/ladybugbot
    - `role` 'owner' | 'member' — An enumeration.
    - `member_count` integer — The number of members that are part of this org
    - `team_count` integer — The number of teams that are part of this org

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/pollination/apis/pollination-server.md) · [All operations](https://skmtc.net/pollination/apis/pollination-server/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/pollination/pollination-server/revisions/c1f3c6d96b31/schema)
