1KOMMA5° Admin - Megasearch API

The Admin - Megasearch API from 1KOMMA5° — 1 operation(s) for admin - megasearch.

Operations 1

GET /api/v1/admin/megasearch Search across multiple entities (users, branches) based on user permissions #

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/1komma5-admin-megasearch-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 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 Specification

1komma5-admin-megasearch-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: 1komma5 Admin - Megasearch API
  version: '1.0'
  contact: {}
  description: 'Operations tagged Admin - Megasearch across 2 of this provider''s published API definitions: 1komma5-admin-megasearch-api-openapi.yml, 1komma5-offer-tool-openapi-original.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://heartbeat.1komma5grad.com
  description: Base URL reconciled from apis.yml
tags:
- name: Admin - Megasearch
paths:
  /api/v1/admin/megasearch:
    servers:
    - url: https://heartbeat.1komma5grad.com
      description: Base URL reconciled from apis.yml
    get:
      operationId: MegasearchController_search_v1
      parameters:
      - name: q
        required: true
        in: query
        description: Search query string
        schema:
          minLength: 2
          example: john
          type: string
      - name: limit
        required: false
        in: query
        description: Maximum number of results per entity type
        schema:
          minimum: 1
          maximum: 20
          default: 5
          type: number
      responses:
        '200':
          description: Grouped search results by entity type
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MegasearchResponseDto'
      summary: Search across multiple entities (users, branches) based on user permissions
      tags:
      - Admin - Megasearch
components:
  schemas:
    MegasearchGroupDto:
      type: object
      properties:
        type:
          type: string
          description: Entity type identifier
          example: user
        label:
          type: string
          description: Human-readable label for the group
          example: Users
        results:
          description: Search results in this group
          type: array
          items:
            $ref: '#/components/schemas/MegasearchResultDto'
      required:
      - type
      - label
      - results
    MegasearchResultDto:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier of the entity
          example: '1'
        title:
          type: string
          description: Display title (usually the name)
          example: John Doe
        subtitle:
          type: string
          description: Additional information (email, country, zoho ID)
          example: john@example.com
        tags:
          description: Colored tags for rich metadata display
          type: array
          items:
            $ref: '#/components/schemas/MegasearchResultTagDto'
        url:
          type: string
          description: URL path to navigate to this entity
          example: /users/1
      required:
      - id
      - title
      - url
    MegasearchMetaDto:
      type: object
      properties:
        query:
          type: string
          description: The search query that was executed
          example: john
        totalResults:
          type: number
          description: Total number of results across all groups
          example: 5
      required:
      - query
      - totalResults
    MegasearchResultTagDto:
      type: object
      properties:
        label:
          type: string
          description: Tag display label
          example: PV
        variant:
          type: string
          description: Color variant for the tag
          example: amber
        style:
          type: string
          description: 'Rendering style: pill (scope badges), dot (type accent), icon (visibility)'
          example: pill
      required:
      - label
      - variant
    MegasearchResponseDto:
      type: object
      properties:
        groups:
          description: Search results grouped by entity type
          type: array
          items:
            $ref: '#/components/schemas/MegasearchGroupDto'
        meta:
          description: Metadata about the search
          allOf:
          - $ref: '#/components/schemas/MegasearchMetaDto'
      required:
      - groups
      - meta
x-refined-from:
- 1komma5-admin-megasearch-api-openapi.yml
- 1komma5-offer-tool-openapi-original.json