Unisson live-map API

The live-map API from Unisson — 3 operation(s) for live-map.

Operations 4

GET /api/v1/live-map Get Live Map #
DELETE /api/v1/live-map Delete Live Map #
GET /api/v1/live-map/status Get Analysis Status #
POST /api/v1/live-map/analyze Start Analysis #

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/unisson-live-map-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

unisson-live-map-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Unisson agent-evals Live Map API
  version: 1.0.0
servers:
- url: https://api.unisson.ai
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: live-map
paths:
  /api/v1/live-map:
    get:
      tags:
      - live-map
      summary: Get Live Map
      description: Get the live map for the organization (if one exists).
      operationId: get_live_map_api_v1_live_map_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                anyOf:
                - $ref: '#/components/schemas/LiveMapResponse'
                - type: 'null'
                title: Response Get Live Map Api V1 Live Map Get
      security:
      - HTTPBearer: []
    delete:
      tags:
      - live-map
      summary: Delete Live Map
      description: Delete the live map for the organization.
      operationId: delete_live_map_api_v1_live_map_delete
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
      - HTTPBearer: []
  /api/v1/live-map/status:
    get:
      tags:
      - live-map
      summary: Get Analysis Status
      description: Get the current analysis status.
      operationId: get_analysis_status_api_v1_live_map_status_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LiveMapStatusResponse'
      security:
      - HTTPBearer: []
  /api/v1/live-map/analyze:
    post:
      tags:
      - live-map
      summary: Start Analysis
      description: 'Start crawling a live website to build a navigation map.


        The crawler will:

        - Start from start_url and discover all linked pages

        - Stay within organization''s allowed_domains (defaults to start_url''s domain if not configured)

        - Add external links as nodes but not explore them

        - Use Kernel browser session for authenticated access (if available)'
      operationId: start_analysis_api_v1_live_map_analyze_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LiveMapRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - HTTPBearer: []
components:
  schemas:
    LiveMapRequest:
      properties:
        start_url:
          type: string
          title: Start Url
        product_id:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Product Id
        allowed_domains:
          anyOf:
          - items:
              type: string
            type: array
          - type: 'null'
          title: Allowed Domains
        max_pages:
          anyOf:
          - type: integer
          - type: 'null'
          title: Max Pages
        context_domain:
          anyOf:
          - type: string
          - type: 'null'
          title: Context Domain
      type: object
      required:
      - start_url
      title: LiveMapRequest
    LiveMapStatusResponse:
      properties:
        status:
          type: string
          title: Status
        progress:
          type: integer
          title: Progress
        pages_discovered:
          type: integer
          title: Pages Discovered
        error_message:
          anyOf:
          - type: string
          - type: 'null'
          title: Error Message
        start_url:
          anyOf:
          - type: string
          - type: 'null'
          title: Start Url
      type: object
      required:
      - status
      - progress
      - pages_discovered
      title: LiveMapStatusResponse
    LiveMapResponse:
      properties:
        id:
          type: string
          title: Id
        start_url:
          type: string
          title: Start Url
        allowed_domains:
          items:
            type: string
          type: array
          title: Allowed Domains
        nodes:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Nodes
        edges:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Edges
        analysis_status:
          type: string
          title: Analysis Status
        analysis_progress:
          type: integer
          title: Analysis Progress
        pages_discovered:
          type: integer
          title: Pages Discovered
      type: object
      required:
      - id
      - start_url
      - allowed_domains
      - nodes
      - edges
      - analysis_status
      - analysis_progress
      - pages_discovered
      title: LiveMapResponse
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer