Popsink organizations API
The organizations API from Popsink — 2 operation(s) for organizations.
The organizations API from Popsink — 2 operation(s) for organizations.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/popsink-organizations-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.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.
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
HTTPValidationError:
title: HTTPValidationError
type: object
properties:
detail:
title: Detail
type: array
items:
$ref: '#/components/schemas/ValidationError'
securitySchemes:
OAuth2PasswordBearer:
type: oauth2
flows:
password:
scopes: {}
tokenUrl: auth/jwt/login