> ## Documentation Index
> Fetch the complete documentation index at: https://docs.natecosmic.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List accessible organizations



## OpenAPI

````yaml /openapi.json get /v1/organizations
openapi: 3.0.3
info:
  title: COSMIC Public API
  version: 0.1.0
  description: >-
    Telecom safety operations API for organizations, members, certifications,
    job roles, and qualifications.


    **Public preview:** this API layer is in public preview. Endpoint structure
    is expected to be mostly stable, but response fields, edge cases, and
    reliability are still subject to change.


    **Discovery:** use `GET /v1/organizations` and `GET
    /v1/organizations/{organization_id}/organization-members` to list orgs and
    members.


    **List / sync:** use `limit`, `cursor`, and `updated_after` (exclusive:
    records with `updated_at` strictly after the given timestamp). List ordering
    is resource-specific and deterministic.


    **Writes:** create endpoints for sync-oriented resources accept
    `Idempotency-Key` and may use `external_id` / `external_source` on
    certifications (and optionally members).
servers:
  - url: https://api.natecosmic.com
security: []
tags:
  - name: Me
    description: Token identity and granted API scopes
  - name: Certifications
    description: User-scoped certification records (token subject)
  - name: Organizations
    description: Tenants and org-scoped resources
  - name: Definitions
    description: Global read discovery for types, roles, qualifications
paths:
  /v1/organizations:
    get:
      tags:
        - Organizations
      summary: List accessible organizations
      parameters:
        - $ref: '#/components/parameters/Limit'
        - $ref: '#/components/parameters/Cursor'
        - $ref: '#/components/parameters/UpdatedAfter'
      responses:
        '200':
          description: Paged organizations
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                  - page
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Organization'
                  page:
                    $ref: '#/components/schemas/Page'
        '401':
          description: Missing or invalid bearer token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorBody'
        '403':
          description: >-
            Forbidden: missing required scope on the token, cannot access the
            resource or organization, or the integration requires re-approval
            after scope changes in the developer portal
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorBody'
      security:
        - bearerAuth: []
components:
  parameters:
    Limit:
      name: limit
      in: query
      schema:
        type: integer
        minimum: 1
        maximum: 200
        default: 50
      description: Page size
    Cursor:
      name: cursor
      in: query
      schema:
        type: string
      description: Opaque pagination cursor from a previous list response
    UpdatedAfter:
      name: updated_after
      in: query
      schema:
        type: string
        format: date-time
      description: Exclusive lower bound on `updated_at` for incremental sync
  schemas:
    Organization:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
        slug:
          type: string
        status:
          type: string
          enum:
            - active
            - inactive
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
    Page:
      type: object
      required:
        - next_cursor
        - has_more
      properties:
        next_cursor:
          type: string
          nullable: true
          description: Next page cursor, or null if none
        has_more:
          type: boolean
    ErrorBody:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - code
            - message
          properties:
            code:
              type: string
              example: validation_error
            message:
              type: string
            details:
              type: object
              additionalProperties: true
            request_id:
              type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'JWT access token. Send `Authorization: Bearer <token>`.'

````