Litmus Clients API

Available email client configurations

Operations 1

GET /clients Litmus List available email clients #

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/litmus-clients-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

litmus-clients-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Litmus Clients API
  version: 1.0.0
  contact:
    name: Litmus Support
    url: https://www.litmus.com/support/
  termsOfService: https://www.litmus.com/terms-of-service/
  description: 'Operations tagged Clients across 2 of this provider''s published API definitions: litmus-instant-openapi.yml, litmus-legacy-previews-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://instant-api.litmus.com/v1
  description: Litmus Instant API Production Server
- url: https://previews-api.litmus.com/api/v1
  description: Litmus Legacy Previews API Production Server
tags:
- name: Clients
  description: Available email client configurations
paths:
  /clients:
    get:
      operationId: listEmailClients
      summary: Litmus List available email clients
      description: Returns the list of email client identifiers available for preview generation. Each entry includes the client ID, display name, platform category, and whether the client is currently available for rendering.
      tags:
      - Clients
      responses:
        '200':
          description: List of available email clients
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/EmailClient'
        '401':
          description: Missing or invalid authentication token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
      - bearerAuth: []
    servers:
    - url: https://instant-api.litmus.com/v1
      description: Litmus Instant API Production Server
components:
  schemas:
    EmailClient:
      type: object
      description: An email client available for preview rendering
      properties:
        id:
          type: string
          description: Unique identifier for the email client
          example: gmail_chrome
        name:
          type: string
          description: Human-readable display name of the email client
          example: Gmail (Chrome)
        platform:
          type: string
          description: Platform category of the email client
          enum:
          - desktop
          - mobile
          - webmail
          example: webmail
        available:
          type: boolean
          description: Whether this client is currently available for rendering
          example: true
    Error:
      type: object
      description: An API error response
      required:
      - message
      properties:
        message:
          type: string
          description: Human-readable error message
          example: Invalid or expired access token
        code:
          type: string
          description: Machine-readable error code
          example: unauthorized
    Error_2:
      type: object
      description: An API error response
      required:
      - message
      properties:
        message:
          type: string
          description: Human-readable error message
          example: Authentication required
        code:
          type: string
          description: Machine-readable error code
          example: unauthorized
    LegacyClient:
      type: object
      description: An email client available for legacy preview testing
      properties:
        slug:
          type: string
          description: Identifier used when specifying this client in test requests
          example: GMAIL
        name:
          type: string
          description: Human-readable display name of the email client
          example: Gmail
        platform:
          type: string
          description: Platform category of the email client
          enum:
          - desktop
          - mobile
          - webmail
          example: webmail
        available:
          type: boolean
          description: Whether this client is currently available for rendering
          example: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: OAuth 2.0 access token obtained via the Litmus OAuth flow
    basicAuth:
      type: http
      scheme: basic
      description: HTTP Basic Auth using Litmus account username and password
x-refined-from:
- litmus-instant-openapi.yml
- litmus-legacy-previews-openapi.yml