Sendlane Suppression API

The Suppression API from Sendlane — 3 operation(s) for suppression.

Operations 5

DELETE /suppression/domains/{suppressionId} Delete Domain Suppression #
GET /suppression/domains Domain Suppressions #
POST /suppression/domains Create Domain Suppression #
GET /suppression/emails Email Suppressions #
POST /suppression/emails Create Email Suppression #

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/sendlane-suppression-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

sendlane-suppression-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reference Suppression API
  version: '2.0'
  contact:
    name: Sendlane
    url: https://sendlane.com
    email: support@sendlane.com
  description: Sendlane V2 API
servers:
- url: https://api.sendlane.com/v2
  description: Sendlane
security:
- BearerToken: []
tags:
- name: Suppression
paths:
  /suppression/domains/{suppressionId}:
    parameters:
    - schema:
        type: number
      name: suppressionId
      in: path
      required: true
    delete:
      summary: Delete Domain Suppression
      operationId: delete-domain-suppression-suppressionId
      responses:
        '202':
          description: Accepted
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/AcceptedResponse.v2'
      description: Remove a domain from the suppression list
      tags:
      - Suppression
  /suppression/domains:
    parameters: []
    get:
      summary: Domain Suppressions
      tags:
      - Suppression
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DomainSuppressionResponse.v2'
              examples:
                Domain Suppression Response:
                  value:
                    data:
                    - id: string
                      domain: string
                    links:
                      first: string
                      last: string
                      prev: string
                      next: string
                    meta:
                      current_page: 1
                      from: 1
                      last_page: 1
                      path: string
                      per_page: 100
                      total: 1
      operationId: get-domain-suppression-suppressionId
      description: Get domain suppressions
    post:
      summary: Create Domain Suppression
      operationId: post-domain-suppression
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StoreDomainSuppressionResponse.v2'
              examples:
                Create Domain Suppression Response:
                  value:
                    data:
                      id: string
                      domain: string
      description: Add a domain to the suppression list
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DomainSuppression.v2'
            examples:
              Create Domain Suppression:
                value:
                  domain: string
      tags:
      - Suppression
  /suppression/emails:
    parameters: []
    get:
      summary: Email Suppressions
      tags:
      - Suppression
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailSuppressionResponse.v2'
              examples:
                Email Suppression Response:
                  value:
                    data:
                    - id: 1
                      email: string
                      list_id: 1
                    links:
                      first: string
                      last: string
                      prev: string
                      next: string
                    meta:
                      current_page: 1
                      from: 1
                      last_page: 1
                      path: string
                      per_page: 100
                      total: 1
      operationId: get-suppression
      description: Get emails in the suppression list
    post:
      summary: Create Email Suppression
      operationId: post-suppression
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailSuppression.v2'
              examples:
                Store Email Suppression Response:
                  value:
                    data:
                      id: 1
                      email: string
                      list_id: 1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/StoreEmailSuppressionRequest.v2'
            examples:
              Add Email to the suppression list:
                value:
                  email: string
                  list_id: 1
      description: Add an email to the suppression list
      tags:
      - Suppression
components:
  schemas:
    PaginatorMeta.v2:
      description: ''
      type: object
      x-examples: {}
      properties:
        current_page:
          type: integer
          readOnly: true
        from:
          type: integer
          readOnly: true
        last_page:
          type: integer
          readOnly: true
        path:
          type: string
          minLength: 1
          readOnly: true
        per_page:
          type: integer
          readOnly: true
        to:
          type: integer
          readOnly: true
        total:
          type: integer
          readOnly: true
      title: Paginator Meta
    DomainSuppressionResponse.v2:
      title: Domain Suppression Response
      type: object
      x-examples:
        Domain Suppression Response:
          data:
          - id: string
            domain: string
          links:
            first: string
            last: string
            prev: string
            next: string
          meta:
            current_page: 1
            from: 1
            last_page: 1
            path: string
            per_page: 100
            total: 1
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/DomainSuppression.v2'
        links:
          $ref: '#/components/schemas/PaginatorLinks.v2'
        meta:
          $ref: '#/components/schemas/PaginatorMeta.v2'
    StoreEmailSuppressionRequest.v2:
      title: Store Email Suppression Request
      type: object
      x-examples:
        Store Email Suppression:
          email: user@example.com
          list_id: 1
      properties:
        email:
          type: string
        list_id:
          type: integer
      required:
      - email
    PaginatorLinks.v2:
      description: ''
      type: object
      x-examples: {}
      properties:
        first:
          type: string
          minLength: 1
          format: uri
          readOnly: true
        last:
          type: string
          minLength: 1
          format: uri
          readOnly: true
        prev:
          type: string
          minLength: 1
          format: uri
          readOnly: true
        next:
          type: string
          minLength: 1
          format: uri
          readOnly: true
      title: Paginator Links
    EmailSuppressionResponse.v2:
      title: Email Suppression Response
      x-examples:
        Email Suppression Response:
          data:
          - id: 1
            email: string
            list_id: 1
          links:
            first: string
            last: string
            prev: string
            next: string
          meta:
            current_page: 1
            from: 1
            last_page: 1
            path: string
            per_page: 100
            total: 1
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/EmailSuppression.v2'
        links:
          $ref: '#/components/schemas/PaginatorLinks.v2'
        meta:
          $ref: '#/components/schemas/PaginatorMeta.v2'
    StoreDomainSuppressionResponse.v2:
      title: Store Domain Suppression Response
      type: object
      properties:
        data:
          $ref: '#/components/schemas/DomainSuppression.v2'
      x-examples:
        Store Domain Suppression Response:
          data:
            id: string
            domain: string
    DomainSuppression.v2:
      title: Domain Suppression
      type: object
      x-examples:
        Domain Suppression:
          id: 1
          domain: example.com
      properties:
        id:
          type: integer
        domain:
          type: string
    EmailSuppression.v2:
      title: Email Suppression
      type: object
      x-examples:
        Email Suppression:
          id: 1
          email: user@example.com
      properties:
        id:
          type: integer
        email:
          type: string
        list_id:
          type: integer
    AcceptedResponse.v2:
      title: Accepted Response
      type: object
      properties:
        message:
          type: string
      x-examples:
        Success Response:
          message: Successfully handled request
  securitySchemes:
    BearerToken:
      name: Authorization
      type: apiKey
      in: header
      description: API token sent in the Authorization header with the value "Bearer {apiToken}"
    OtherAccountBearerToken:
      name: Authorization-Destination
      type: apiKey
      in: header
      description: API token for other account sent in the Authorization-Destination header with the value "Bearer {apiToken}"