Mailchimp IPs API

Manage dedicated IP addresses associated with the account.

Operations 13

POST /ips/list List ip addresses #
POST /ips/info Get ip info #
POST /ips/provision Request additional ip #
POST /ips/start-warmup Start ip warmup #
POST /ips/cancel-warmup Cancel ip warmup #
POST /ips/set-pool Move ip to different pool #
POST /ips/delete Delete ip address #
POST /ips/list-pools List ip pools #
POST /ips/pool-info Get ip pool info #
POST /ips/create-pool Add ip pool #
POST /ips/delete-pool Delete ip pool #
POST /ips/check-custom-dns Test custom dns #
POST /ips/set-custom-dns Set custom dns #

Documentation

Specifications

Schemas & Data

Other Resources

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/mailchimp-ips-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

mailchimp-ips-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.4.1
  title: Mailchimp Transactional Ips API
  contact:
    name: API Support
    email: apihelp@mailchimp.com
  x-permalink: https://github.com/mailchimp/mailchimp-client-lib-codegen/blob/main/spec/transactional.openapi.json
servers:
- url: https://mandrillapp.com/api/1.3
tags:
- name: ips
paths:
  /ips/list:
    post:
      x-custom-config:
        methodNameCamel: list
        methodNameSnake: list
      summary: List ip addresses
      description: Lists your dedicated IPs.
      operationId: postIpsList
      tags:
      - ips
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                description: an array of objects for each dedicated IP
                items:
                  type: object
                  description: information about a single dedicated IP
                  properties:
                    ip:
                      type: string
                      description: the ip address
                      example: 123.123.123.123
                    created_at:
                      type: string
                      format: date-time
                      description: the date and time that the dedicated IP was created as a UTC string in YYYY-MM-DD HH:MM:SS format
                      example: '2025-04-29 18:47:35'
                    pool:
                      type: string
                      description: the name of the pool that this dedicated IP belongs to
                      example: Main Pool
                    domain:
                      type: string
                      description: the domain name (reverse dns) of this dedicated IP
                      example: example.com
                    custom_dns:
                      type: object
                      description: information about the ip's custom dns, if it has been configured
                      properties:
                        enabled:
                          type: boolean
                          description: a boolean indicating whether custom dns has been configured for this ip
                          example: true
                        valid:
                          type: boolean
                          description: whether the ip's custom dns is currently valid
                          example: true
                        error:
                          type: string
                          description: if the ip's custom dns is invalid, this will include details about the error
                          example: Invalid reverse DNS
                    warmup:
                      type: object
                      description: information about the ip's warmup status
                      properties:
                        warming_up:
                          type: boolean
                          description: whether the ip is currently in warmup mode
                          example: false
                        start_at:
                          type: string
                          format: date-time
                          description: the start time for the warmup process as a UTC string in YYYY-MM-DD HH:MM:SS format
                          example: '2025-04-25 12:00:00'
                        end_at:
                          type: string
                          format: date-time
                          description: the end date and time for the warmup process as a UTC string in YYYY-MM-DD HH:MM:SS format
                          example: '2025-04-29 12:00:00'
            application/x-php:
              schema:
                type: array
                description: an array of objects for each dedicated IP
                items:
                  type: object
                  description: information about a single dedicated IP
                  properties:
                    ip:
                      type: string
                      description: the ip address
                      example: 123.123.123.123
                    created_at:
                      type: string
                      format: date-time
                      description: the date and time that the dedicated IP was created as a UTC string in YYYY-MM-DD HH:MM:SS format
                      example: '2025-04-29 18:47:35'
                    pool:
                      type: string
                      description: the name of the pool that this dedicated IP belongs to
                      example: Main Pool
                    domain:
                      type: string
                      description: the domain name (reverse dns) of this dedicated IP
                      example: example.com
                    custom_dns:
                      type: object
                      description: information about the ip's custom dns, if it has been configured
                      properties:
                        enabled:
                          type: boolean
                          description: a boolean indicating whether custom dns has been configured for this ip
                          example: true
                        valid:
                          type: boolean
                          description: whether the ip's custom dns is currently valid
                          example: true
                        error:
                          type: string
                          description: if the ip's custom dns is invalid, this will include details about the error
                          example: Invalid reverse DNS
                    warmup:
                      type: object
                      description: information about the ip's warmup status
                      properties:
                        warming_up:
                          type: boolean
                          description: whether the ip is currently in warmup mode
                          example: false
                        start_at:
                          type: string
                          format: date-time
                          description: the start time for the warmup process as a UTC string in YYYY-MM-DD HH:MM:SS format
                          example: '2025-04-25 12:00:00'
                        end_at:
                          type: string
                          format: date-time
                          description: the end date and time for the warmup process as a UTC string in YYYY-MM-DD HH:MM:SS format
                          example: '2025-04-29 12:00:00'
            application/x-yaml; charset=utf-8:
              schema:
                type: array
                description: an array of objects for each dedicated IP
                items:
                  type: object
                  description: information about a single dedicated IP
                  properties:
                    ip:
                      type: string
                      description: the ip address
                      example: 123.123.123.123
                    created_at:
                      type: string
                      format: date-time
                      description: the date and time that the dedicated IP was created as a UTC string in YYYY-MM-DD HH:MM:SS format
                      example: '2025-04-29 18:47:35'
                    pool:
                      type: string
                      description: the name of the pool that this dedicated IP belongs to
                      example: Main Pool
                    domain:
                      type: string
                      description: the domain name (reverse dns) of this dedicated IP
                      example: example.com
                    custom_dns:
                      type: object
                      description: information about the ip's custom dns, if it has been configured
                      properties:
                        enabled:
                          type: boolean
                          description: a boolean indicating whether custom dns has been configured for this ip
                          example: true
                        valid:
                          type: boolean
                          description: whether the ip's custom dns is currently valid
                          example: true
                        error:
                          type: string
                          description: if the ip's custom dns is invalid, this will include details about the error
                          example: Invalid reverse DNS
                    warmup:
                      type: object
                      description: information about the ip's warmup status
                      properties:
                        warming_up:
                          type: boolean
                          description: whether the ip is currently in warmup mode
                          example: false
                        start_at:
                          type: string
                          format: date-time
                          description: the start time for the warmup process as a UTC string in YYYY-MM-DD HH:MM:SS format
                          example: '2025-04-25 12:00:00'
                        end_at:
                          type: string
                          format: date-time
                          description: the end date and time for the warmup process as a UTC string in YYYY-MM-DD HH:MM:SS format
                          example: '2025-04-29 12:00:00'
      deprecated: false
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
              - key
              properties:
                key:
                  type: string
                  description: a valid api key
        required: true
  /ips/info:
    post:
      x-custom-config:
        methodNameCamel: info
        methodNameSnake: info
      summary: Get ip info
      description: Retrieves information about a single dedicated IP.
      operationId: postIpsInfo
      tags:
      - ips
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                description: Information about the dedicated ip
                properties:
                  ip:
                    type: string
                    description: the ip address
                    example: 123.123.123.123
                  created_at:
                    type: string
                    description: the date and time that the dedicated IP was created as a UTC string in YYYY-MM-DD HH:MM:SS format
                    format: date-time
                    example: '2025-04-29 18:47:35'
                  pool:
                    type: string
                    description: the name of the pool that this dedicated IP belongs to
                    example: Main Pool
                  domain:
                    type: string
                    description: the domain name (reverse dns) of this dedicated IP
                    example: example.com
                  custom_dns:
                    type: object
                    description: information about the ip's custom dns, if it has been configured
                    properties:
                      enabled:
                        type: boolean
                        description: a boolean indicating whether custom dns has been configured for this ip
                        example: true
                      valid:
                        type: boolean
                        description: whether the ip's custom dns is currently valid
                        example: true
                      error:
                        type: string
                        description: if the ip's custom dns is invalid, this will include details about the error
                        example: Invalid reverse DNS
                  warmup:
                    type: object
                    description: information about the ip's warmup status
                    properties:
                      warming_up:
                        type: boolean
                        description: whether the ip is currently in warmup mode
                        example: false
                      start_at:
                        type: string
                        format: date-time
                        description: the start time for the warmup process as a UTC string in YYYY-MM-DD HH:MM:SS format
                        example: '2025-04-25 12:00:00'
                      end_at:
                        type: string
                        format: date-time
                        description: the end date and time for the warmup process as a UTC string in YYYY-MM-DD HH:MM:SS format
                        example: '2025-05-25 12:00:00'
            application/x-php:
              schema:
                type: object
                description: Information about the dedicated ip
                properties:
                  ip:
                    type: string
                    description: the ip address
                    example: 123.123.123.123
                  created_at:
                    type: string
                    description: the date and time that the dedicated IP was created as a UTC string in YYYY-MM-DD HH:MM:SS format
                    format: date-time
                    example: '2025-04-29 18:47:35'
                  pool:
                    type: string
                    description: the name of the pool that this dedicated IP belongs to
                    example: Main Pool
                  domain:
                    type: string
                    description: the domain name (reverse dns) of this dedicated IP
                    example: example.com
                  custom_dns:
                    type: object
                    description: information about the ip's custom dns, if it has been configured
                    properties:
                      enabled:
                        type: boolean
                        description: a boolean indicating whether custom dns has been configured for this ip
                        example: true
                      valid:
                        type: boolean
                        description: whether the ip's custom dns is currently valid
                        example: true
                      error:
                        type: string
                        description: if the ip's custom dns is invalid, this will include details about the error
                        example: Invalid reverse DNS
                  warmup:
                    type: object
                    description: information about the ip's warmup status
                    properties:
                      warming_up:
                        type: boolean
                        description: whether the ip is currently in warmup mode
                        example: false
                      start_at:
                        type: string
                        format: date-time
                        description: the start time for the warmup process as a UTC string in YYYY-MM-DD HH:MM:SS format
                        example: '2025-04-25 12:00:00'
                      end_at:
                        type: string
                        format: date-time
                        description: the end date and time for the warmup process as a UTC string in YYYY-MM-DD HH:MM:SS format
                        example: '2025-05-25 12:00:00'
            application/x-yaml; charset=utf-8:
              schema:
                type: object
                description: Information about the dedicated ip
                properties:
                  ip:
                    type: string
                    description: the ip address
                    example: 123.123.123.123
                  created_at:
                    type: string
                    description: the date and time that the dedicated IP was created as a UTC string in YYYY-MM-DD HH:MM:SS format
                    format: date-time
                    example: '2025-04-29 18:47:35'
                  pool:
                    type: string
                    description: the name of the pool that this dedicated IP belongs to
                    example: Main Pool
                  domain:
                    type: string
                    description: the domain name (reverse dns) of this dedicated IP
                    example: example.com
                  custom_dns:
                    type: object
                    description: information about the ip's custom dns, if it has been configured
                    properties:
                      enabled:
                        type: boolean
                        description: a boolean indicating whether custom dns has been configured for this ip
                        example: true
                      valid:
                        type: boolean
                        description: whether the ip's custom dns is currently valid
                        example: true
                      error:
                        type: string
                        description: if the ip's custom dns is invalid, this will include details about the error
                        example: Invalid reverse DNS
                  warmup:
                    type: object
                    description: information about the ip's warmup status
                    properties:
                      warming_up:
                        type: boolean
                        description: whether the ip is currently in warmup mode
                        example: false
                      start_at:
                        type: string
                        format: date-time
                        description: the start time for the warmup process as a UTC string in YYYY-MM-DD HH:MM:SS format
                        example: '2025-04-25 12:00:00'
                      end_at:
                        type: string
                        format: date-time
                        description: the end date and time for the warmup process as a UTC string in YYYY-MM-DD HH:MM:SS format
                        example: '2025-05-25 12:00:00'
      deprecated: false
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
              - key
              properties:
                key:
                  type: string
                  description: a valid api key
                ip:
                  type: string
                  description: a dedicated IP address
        required: true
  /ips/provision:
    post:
      x-custom-config:
        methodNameCamel: provision
        methodNameSnake: provision
      summary: Request additional ip
      description: Requests an additional dedicated IP for your account. Accounts may have one outstanding request at any time, and provisioning requests are processed within 24 hours.
      operationId: postIpsProvision
      tags:
      - ips
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                description: a description of the provisioning request that was created
                properties:
                  requested_at:
                    type: string
                    format: date-time
                    description: the date and time that the request was created as a UTC timestamp in YYYY-MM-DD HH:MM:SS format
                    example: '2025-04-29 18:47:35'
            application/x-php:
              schema:
                type: object
                description: a description of the provisioning request that was created
                properties:
                  requested_at:
                    type: string
                    format: date-time
                    description: the date and time that the request was created as a UTC timestamp in YYYY-MM-DD HH:MM:SS format
                    example: '2025-04-29 18:47:35'
            application/x-yaml; charset=utf-8:
              schema:
                type: object
                description: a description of the provisioning request that was created
                properties:
                  requested_at:
                    type: string
                    format: date-time
                    description: the date and time that the request was created as a UTC timestamp in YYYY-MM-DD HH:MM:SS format
                    example: '2025-04-29 18:47:35'
      deprecated: false
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
              - key
              properties:
                key:
                  type: string
                  description: a valid api key
                warmup:
                  type: boolean
                  description: whether to enable warmup mode for the ip
                pool:
                  type: string
                  description: the id of the pool to add the dedicated ip to, or null to use your account's default pool
        required: true
  /ips/start-warmup:
    post:
      x-custom-config:
        methodNameCamel: startWarmup
        methodNameSnake: start_warmup
      summary: Start ip warmup
      description: Begins the warmup process for a dedicated IP. During the warmup process, the Transactional API will gradually increase the percentage of your mail that is sent over the warming-up IP, over a period of roughly 30 days. The rest of your mail will be sent over shared IPs or other dedicated IPs in the same pool.
      operationId: postIpsStartWarmup
      tags:
      - ips
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                description: Information about the dedicated IP
                properties:
                  ip:
                    type: string
                    description: the ip address
                    example: 123.123.123.123
                  created_at:
                    type: string
                    format: date-time
                    description: the date and time that the dedicated IP was created as a UTC string in YYYY-MM-DD HH:MM:SS format
                    example: '2025-04-29 18:47:35'
                  pool:
                    type: string
                    description: the name of the pool that this dedicated IP belongs to
                    example: Main Pool
                  domain:
                    type: string
                    description: the domain name (reverse dns) of this dedicated IP
                    example: example.com
                  custom_dns:
                    type: object
                    description: information about the ip's custom dns, if it has been configured
                    properties:
                      enabled:
                        type: boolean
                        description: a boolean indicating whether custom dns has been configured for this ip
                        example: true
                      valid:
                        type: boolean
                        description: whether the ip's custom dns is currently valid
                        example: true
                      error:
                        type: string
                        description: if the ip's custom dns is invalid, this will include details about the error
                        example: Invalid reverse DNS
                  warmup:
                    type: object
                    description: information about the ip's warmup status
                    properties:
                      warming_up:
                        type: boolean
                        description: whether the ip is currently in warmup mode
                        example: true
                      start_at:
                        type: string
                        format: date-time
                        description: the start time for the warmup process as a UTC string in YYYY-MM-DD HH:MM:SS format
                        example: '2025-04-25 12:00:00'
                      end_at:
                        type: string
                        format: date-time
                        description: the end date and time for the warmup process as a UTC string in YYYY-MM-DD HH:MM:SS format
                        example: '2025-05-25 12:00:00'
            application/x-php:
              schema:
                type: object
                description: Information about the dedicated IP
                properties:
                  ip:
                    type: string
                    description: the ip address
                    example: 123.123.123.123
                  created_at:
                    type: string
                    format: date-time
                    description: the date and time that the dedicated IP was created as a UTC string in YYYY-MM-DD HH:MM:SS format
                    example: '2025-04-29 18:47:35'
                  pool:
                    type: string
                    description: the name of the pool that this dedicated IP belongs to
                    example: Main Pool
                  domain:
                    type: string
                    description: the domain name (reverse dns) of this dedicated IP
                    example: example.com
                  custom_dns:
                    type: object
                    description: information about the ip's custom dns, if it has been configured
                    properties:
                      enabled:
                        type: boolean
                        description: a boolean indicating whether custom dns has been configured for this ip
                        example: true
                      valid:
                        type: boolean
                        description: whether the ip's custom dns is currently valid
                        example: true
                      error:
                        type: string
                        description: if the ip's custom dns is invalid, this will include details about the error
                        example: Invalid reverse DNS
                  warmup:
                    type: object
                    description: information about the ip's warmup status
                    properties:
                      warming_up:
                        type: boolean
                        description: whether the ip is currently in warmup mode
                        example: true
                      start_at:
                        type: string
                        format: date-time
                        description: the start time for the warmup process as a UTC string in YYYY-MM-DD HH:MM:SS format
                        example: '2025-04-25 12:00:00'
                      end_at:
                        type: string
                        format: date-time
                        description: the end date and time for the warmup process as a UTC string in YYYY-MM-DD HH:MM:SS format
                        example: '2025-05-25 12:00:00'
            application/x-yaml; charset=utf-8:
              schema:
                type: object
                description: Information about the dedicated IP
                properties:
                  ip:
                    type: string
                    description: the ip address
                    example: 123.123.123.123
                  created_at:
                    type: string
                    format: date-time
                    description: the date and time that the dedicated IP was created as a UTC string in YYYY-MM-DD HH:MM:SS format
                    example: '2025-04-29 18:47:35'
                  pool:
                    type: string
                    description: the name of the pool that this dedicated IP belongs to
                    example: Main Pool
                  domain:
                    type: string
                    description: the domain name (reverse dns) of this dedicated IP
                    example: example.com
                  custom_dns:
                    type: object
                    description: information about the ip's custom dns, if it has been configured
                    properties:
                      enabled:
                        type: boolean
                        description: a boolean indicating whether custom dns has been configured for this ip
                        example: true
                      valid:
                        type: boolean
                        description: whether the ip's custom dns is currently valid
                        example: true
                      error:
                        type: string
                        description: if the ip's custom dns is invalid, this will include details about the error
                        example: Invalid reverse DNS
                  warmup:
                    type: object
                    description: information about the ip's warmup status
                    properties:
                      warming_up:
                        type: boolean
                        description: whether the ip is currently in warmup mode
                        example: true
                      start_at:
                        type: string
                        format: date-time
                        description: the start time for the warmup process as a UTC string in YYYY-MM-DD HH:MM:SS format
                        example: '2025-04-25 12:00:00'
                      end_at:
                        type: string
                        format: date-time
                        description: the end date and time for the warmup process as a UTC string in YYYY-MM-DD HH:MM:SS format
                        example: '2025-05-25 12:00:00'
      deprecated: false
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
              - key
              - ip
              properties:
                key:
                  type: string
                  description: a valid api key
                ip:
                  type: string
                  description: a dedicated ip address
        required: true
  /ips/cancel-warmup:
    post:
      x-custom-config:
        methodNameCamel: cancelWarmup
        methodNameSnake: cancel_warmup
      summary: Cancel ip warmup
      description: Cancels the warmup process for a dedicated IP.
      operationId: postIpsCancelWarmup
      tags:
      - ips
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                description: Information about the dedicated IP
                properties:
                  ip:
                    type: string
                    description: the ip address
                    example: 123.123.123.123
                  created_at:
                    type: string
                    format: date-time
                    description: the date and time that the dedicated IP was created as a UTC string in YYYY-MM-DD HH:MM:SS format
                    example: '2025-04-29 18:47:35'
                  pool:
                    type: string
                    description: the name of the pool that this dedicated IP belongs to
                    example: Main Pool
                  domain:
                    type: string
                    description: the domain name (reverse dns) of this dedicated IP
                    example: example.com
                  custom_dns:
                    type: object
                    description: information about the ip's custom dns, if it has been configured
                    properties:
                      enabled:
                        type: boolean
                        description: a boolean indicating whether custom dns has been configured for this ip
                        example: true
                      valid:
                        type: boolean
                        description: whether the ip's custom dns is currently valid
                        example: true
                      error:
            

# --- truncated at 32 KB (105 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/mailchimp/refs/heads/main/openapi/mailchimp-ips-api-openapi.yml