Popsink organizations API

The organizations API from Popsink — 2 operation(s) for organizations.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/popsink-organizations-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

popsink-organizations-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Fast admin organizations API
  version: 0.1.0
servers:
- url: /api
tags:
- name: organizations
paths:
  /organizations/:
    get:
      tags:
      - organizations
      summary: Get Organizations
      description: Get the organizations of the current user.
      operationId: get_organizations_organizations__get
      parameters:
      - required: false
        schema:
          title: Authorization
          type: string
          default: ''
        name: authorization
        in: header
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    post:
      tags:
      - organizations
      summary: Create Organization
      description: Create an organization.
      operationId: create_organization_organizations__post
      parameters:
      - required: false
        schema:
          title: Authorization
          type: string
          default: ''
        name: authorization
        in: header
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OrganizationConfig'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /organizations/{organization_uuid}/:
    get:
      tags:
      - organizations
      summary: Get Organization
      description: Get a specific organization details.
      operationId: get_organization_organizations__organization_uuid___get
      parameters:
      - required: true
        schema:
          title: Organization Uuid
          type: string
        name: organization_uuid
        in: path
      - required: false
        schema:
          title: Authorization
          type: string
          default: ''
        name: authorization
        in: header
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    delete:
      tags:
      - organizations
      summary: Delete Organization
      description: Delete a specific organization.
      operationId: delete_organization_organizations__organization_uuid___delete
      parameters:
      - required: true
        schema:
          title: Organization Uuid
          type: string
        name: organization_uuid
        in: path
      - required: false
        schema:
          title: Authorization
          type: string
          default: ''
        name: authorization
        in: header
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    OrganizationConfig:
      title: OrganizationConfig
      required:
      - name
      - region_label
      type: object
      properties:
        name:
          title: Name
          type: string
        region_label:
          title: Region Label
          type: string
      description: Define a message event, to send to Kafka.
    HTTPValidationError:
      title: HTTPValidationError
      type: object
      properties:
        detail:
          title: Detail
          type: array
          items:
            $ref: '#/components/schemas/ValidationError'
    ValidationError:
      title: ValidationError
      required:
      - loc
      - msg
      - type
      type: object
      properties:
        loc:
          title: Location
          type: array
          items:
            anyOf:
            - type: string
            - type: integer
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: auth/jwt/login