InboxKit
  1. Sequencers
InboxKit
  • Introduction
  • Account
    • Get account details
      GET
  • Workspaces
    • List workspaces
      GET
    • Get workspace details
      GET
    • Create workspace
      POST
    • Update workspace
      PUT
    • Delete workspace
      DELETE
    • Update workspace webhook
      POST
  • Domains
    • Search available domains
      POST
    • Check if domain is banned from registration
      GET
    • Check domain availability
      GET
    • Register domains
      POST
    • List domains
      GET
    • List assignable domains
      GET
    • Set DMARC policy
      POST
    • Remove DMARC policy
      DELETE
    • Remove domains
      POST
    • Set domain forwarding
      POST
    • Set email forwarding
      POST
    • Remove email forwarding
      DELETE
    • Set catch-all email
      POST
    • Remove catch-all email
      DELETE
    • Get nameservers for domain connection
      POST
    • Check nameservers propagation
      POST
  • Mailboxes
    • List mailboxes
    • Show mailbox credentials
    • Get mailbox details
    • Buy mailboxes
    • Check mailbox status
    • Cancel mailboxes
    • Update mailbox
    • Update mailbox profile picture
    • Generate TOTP
    • Change username
    • Change password
    • Check mailbox availability
  • DNS
    • Get DNS records
    • Add DNS records
    • Update DNS records
    • Delete DNS records
  • Sequencers
    • Export mailboxes status
      POST
    • List sequencer platforms
      GET
    • List sequencers
      GET
    • Export mailboxes
      POST
    • Add sequencer
      POST
    • Update sequencer
      POST
    • Delete sequencers
      POST
  • Billing
    • Get pricing plans
    • Get subscription details
    • Change subscription plan
    • Cancel subscription
    • Get wallet details
    • Add credits to wallet
    • Update auto top-up settings
    • Get billing portal link
  1. Sequencers

List sequencer platforms

GET
https://api.inboxkit.com/v1/api/sequencers/platforms
Sequencers
Maintainer:Not configured
Get a list of supported sequencer platforms with their configuration details
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.inboxkit.com/v1/api/sequencers/platforms'
Response Response Example
{
    "error": false,
    "message": "Sequencer platforms retrieved successfully",
    "platforms": [
        {
            "platform": "lemlist",
            "name": "Lemlist",
            "logo": "https://example.com/logo.png",
            "fields": [
                {
                    "name": "api_key",
                    "type": "password",
                    "required": true
                }
            ]
        }
    ]
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

Responses

🟢200OK
application/json
Sequencer platforms retrieved successfully
Body
error
boolean 
optional
Example:
false
message
string 
optional
Example:
Sequencer platforms retrieved successfully
platforms
array [object {4}] 
optional
List of supported sequencer platforms
platform
string 
optional
Platform identifier
Example:
lemlist
name
string 
optional
Platform display name
Example:
Lemlist
logo
string 
optional
Platform logo URL
Example:
https://example.com/logo.png
fields
array [object {3}] 
optional
Required fields for platform configuration
🟠401Unauthorized
🔴500Server Error
Modified at 2025-06-20 10:07:11
Previous
Export mailboxes status
Next
List sequencers
Built with