Unisson browser-contexts API

The browser-contexts API from Unisson — 2 operation(s) for browser-contexts.

Operations 2

GET /api/v1/browser-contexts/org List Org Sessions #
DELETE /api/v1/browser-contexts/user/{user_id} Delete User Session #

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-browser-contexts-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-browser-contexts-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Unisson agent-evals Browser Contexts 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: browser-contexts
paths:
  /api/v1/browser-contexts/org:
    get:
      tags:
      - browser-contexts
      summary: List Org Sessions
      description: 'List users with saved browser sessions for the organization.


        Each user has ONE unified context that may contain auth for multiple domains.

        Admins can see all users'' sessions, members can only see their own.'
      operationId: list_org_sessions_api_v1_browser_contexts_org_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrgSessionsResponse'
      security:
      - HTTPBearer: []
  /api/v1/browser-contexts/user/{user_id}:
    delete:
      tags:
      - browser-contexts
      summary: Delete User Session
      description: "Delete a user's saved authentication.\n\n- If domain is provided: Surgically removes auth for that specific domain\n  (starts a Kernel browser session to filter cookies, then persists)\n- If domain is not provided: Clears ALL auth by deleting the unified context\n\nUsers can delete their own session. Admins can delete any user's session."
      operationId: delete_user_session_api_v1_browser_contexts_user__user_id__delete
      security:
      - HTTPBearer: []
      parameters:
      - name: user_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: User Id
      - name: domain
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: Domain to revoke auth for. If not provided, clears ALL auth.
          title: Domain
        description: Domain to revoke auth for. If not provided, clears ALL auth.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    UserWithSessionsResponse:
      properties:
        user_id:
          type: string
          title: User Id
        email:
          type: string
          title: Email
        first_name:
          anyOf:
          - type: string
          - type: 'null'
          title: First Name
        last_name:
          anyOf:
          - type: string
          - type: 'null'
          title: Last Name
        profile_image_url:
          anyOf:
          - type: string
          - type: 'null'
          title: Profile Image Url
        context_id:
          type: string
          title: Context Id
        last_used_at:
          type: string
          title: Last Used At
        authenticated_domains:
          items:
            $ref: '#/components/schemas/AuthenticatedDomainInfo'
          type: array
          title: Authenticated Domains
      type: object
      required:
      - user_id
      - email
      - context_id
      - last_used_at
      - authenticated_domains
      title: UserWithSessionsResponse
      description: User with their unified context and authenticated domains.
    AuthenticatedDomainInfo:
      properties:
        domain:
          type: string
          title: Domain
        authenticated_at:
          type: string
          title: Authenticated At
        last_used_at:
          type: string
          title: Last Used At
      type: object
      required:
      - domain
      - authenticated_at
      - last_used_at
      title: AuthenticatedDomainInfo
      description: Information about an authenticated domain.
    OrgSessionsResponse:
      properties:
        users:
          items:
            $ref: '#/components/schemas/UserWithSessionsResponse'
          type: array
          title: Users
      type: object
      required:
      - users
      title: OrgSessionsResponse
      description: Response containing all users with saved sessions in the organization.
    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