MadKudu Organisation API

The Organisation API from MadKudu — 2 operation(s) for organisation.

Operations 2

GET /organisation Get your Organisation information #
GET /organisation/value-prop Get Organisation Value Proposition #

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/madkudu-organisation-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

madkudu-organisation-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Mad Organisation API
  version: 0.0.0
servers:
- url: https://madapi.madkudu.com
  description: Production server
  variables: {}
- url: https://madapi.wisekudu.com
  description: Staging server
  variables: {}
security:
- ApiKeyAuth: []
tags:
- name: Organisation
paths:
  /organisation:
    get:
      operationId: Organisation_getOrganisation
      summary: Get your Organisation information
      description: Retrieve your organization's profile. Useful for verifying the account authenticated
      parameters: []
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganisationResponse'
      tags:
      - Organisation
  /organisation/value-prop:
    get:
      operationId: Organisation_getValueProposition
      summary: Get Organisation Value Proposition
      description: Retrieves the value proposition for your tenant, containing persona-specific value propositions
      parameters: []
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ValueProposition'
      tags:
      - Organisation
components:
  schemas:
    OrganisationResponse:
      type: object
      required:
      - _id
      - domain
      - name
      - created_at
      - updated_at
      properties:
        _id:
          type: integer
          format: int32
          description: Organisation ID
        domain:
          type: string
          description: Organisation domain
        name:
          type: string
          description: Organisation name
        created_at:
          type: string
          description: Creation timestamp
        updated_at:
          type: string
          description: Last update timestamp
    ValueProposition:
      type: object
      required:
      - persona
      - valueProp
      properties:
        persona:
          type: string
          description: Target persona or role
        valueProp:
          type: string
          description: Value proposition for this persona
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key