---
title: "List organizations"
method: GET
path: "/v1/organizations"
tags: ["Organizations"]
---

# List organizations

`GET /v1/organizations`

Retrieves a list of organizations associated with your Straddle integration. The organizations are returned sorted by creation date, with the most recently created organizations appearing first. This endpoint supports advanced sorting and filtering options to help you find specific organizations.

## Query parameters

- `name` string — List organizations by name (partial match supported).
- `external_id` string — List organizations by their external ID.
- `page_number` integer — Results page number. Starts at page 1.
- `page_size` integer — Page size. Default value: 100. Max value: 1000
- `sort_by` string — Sort By. Default value: 'id'.
- `sort_order` 'asc' | 'desc' — Sort Order. Default value: 'asc'.

## Headers

- `request-id` string
- `correlation-id` string

## Response `200`

OK

- PagedResponseOfOrganizationV1
  - `meta` PagedResponseMetadata, required — Metadata about the API request, including an identifier, timestamp, and pagination details.
    - `api_request_id` string, uuid, required — Unique identifier for this API request, useful for troubleshooting.
    - `api_request_timestamp` string, date-time, required — Timestamp for this API request, useful for troubleshooting.
    - `total_items` integer, required — Total number of items returned in this response.
    - `page_number` integer, required — Page number for paginated results.
    - `page_size` integer, required — Number of items per page in this response.
    - `max_page_size` integer, required — Maximum allowed page size for this endpoint.
    - `sort_by` string, required — The field that the results were sorted by.
    - `sort_order` 'asc' | 'desc', required
    - `total_pages` integer, required — The number of pages available.
  - `response_type` 'object' | 'array' | 'error' | 'none', required — Indicates the structure of the returned content. - "object" means the `data` field contains a single JSON object. - "array" means the `data` field contains an array of objects. - "error" means the `data` field contains an error object with details of the issue. - "none" means no data is returned.
  - `data` OrganizationV1[], required
    - `id` string, uuid, required — Straddle's unique identifier for the organization.
    - `name` string, required — The name of the organization.
    - `external_id` string, nullable — Unique identifier for the organization in your database, used for cross-referencing between Straddle and your systems.
    - `metadata` object, nullable — Up to 20 additional user-defined key-value pairs. Useful for storing additional information about the organization in a structured format.
    - `created_at` string, date-time, required — Timestamp of when the organization was created.
    - `updated_at` string, date-time, required — Timestamp of the most recent update to the organization.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `422` — Validation Failed
- `500` — Server Error

---

[API](https://skmtc.net/straddleio/apis/straddle-api.md) · [All operations](https://skmtc.net/straddleio/apis/straddle-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/straddleio/straddle-api/revisions/6e13cd88cda9/schema)
