Sublime Security Mailboxes API

The Mailboxes API from Sublime Security — 1 operation(s) for mailboxes.

Operations 1

GET /v0/mailboxes List mailboxes #

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/sublime-security-mailboxes-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

sublime-security-mailboxes-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact:
    email: support@sublime.security
  title: Multi-Tenancy API (BETA) BinExplode Mailboxes API
  version: '1.0'
servers:
- url: '{scheme}://{server}'
  variables:
    scheme:
      default: https
      enum:
      - http
      - https
    server:
      default: platform.sublime.security
      description: Base URL of your Sublime deployment
security:
- bearerAuth: []
tags:
- name: Mailboxes
paths:
  /v0/mailboxes:
    get:
      description: List all mailboxes
      operationId: listMailboxes
      parameters:
      - description: Filter for effectively active mailboxes (marked active with a live subscription)
        in: query
        name: active
        schema:
          description: Filter for effectively active mailboxes (marked active with a live subscription)
          type:
          - boolean
          - 'null'
      - description: Email addresses of the mailboxes to return (comma-delimited)
        in: query
        name: email_addresses
        schema:
          description: Email addresses of the mailboxes to return (comma-delimited)
          type:
          - string
          - 'null'
      - description: The maximum number of entries to return. If the value exceeds the maximum, then the maximum value will be used
        in: query
        name: limit
        schema:
          description: The maximum number of entries to return. If the value exceeds the maximum, then the maximum value will be used
          format: int32
          maximum: 500
          type:
          - integer
          - 'null'
      - description: Comma-delimited list of mailbox types to filter by
        in: query
        name: mailbox_types
        schema:
          description: Comma-delimited list of mailbox types to filter by
          type:
          - string
          - 'null'
      - description: Filter for mailboxes marked active
        in: query
        name: marked_active
        schema:
          description: Filter for mailboxes marked active
          type:
          - boolean
          - 'null'
      - description: ID of the message source the mailboxes belong to
        in: query
        name: message_source_id
        schema:
          description: ID of the message source the mailboxes belong to
          type:
          - string
          - 'null'
      - description: The (zero-based) offset of the first mailbox to return
        in: query
        name: offset
        schema:
          description: The (zero-based) offset of the first mailbox to return
          format: int32
          type:
          - integer
          - 'null'
      - description: Search across mailbox names and email addresses
        in: query
        name: search
        schema:
          description: Search across mailbox names and email addresses
          type:
          - string
          - 'null'
      - description: Comma-delimited list of subscription error types to filter by
        in: query
        name: sub_error_types
        schema:
          description: Comma-delimited list of subscription error types to filter by
          type:
          - string
          - 'null'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HandlersV0ListMailboxesResponse'
          description: OK
      summary: List mailboxes
      tags:
      - Mailboxes
components:
  schemas:
    HandlersV0Mailbox:
      properties:
        active:
          description: Whether the mailbox is active
          type: boolean
        email_address:
          description: Mailbox email address
          type: string
        id:
          description: Mailbox ID
          format: uuid
          type: string
        subscription_error_status:
          description: Error type encountered when last trying to subscribe to change notifications from the provider (null if most recently successful)
          type:
          - string
          - 'null'
      required:
      - email_address
      - id
      type: object
    HandlersV0ListMailboxesResponse:
      properties:
        active:
          description: Total number of active matching filters
          format: int32
          type: integer
        count:
          description: Count of results for this page
          format: int32
          type: integer
        mailboxes:
          description: List of mailboxes
          items:
            $ref: '#/components/schemas/HandlersV0Mailbox'
          type: array
        total:
          description: Total number of results available
          format: int32
          type: integer
      type: object
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http
x-readme:
  explorer-enabled: false