v1.0.0
OAS 2.0

Sky Senders API Docs

      Welcome to the SkySenders API Documentation - your gateway to seamless cold email automation. 

      SkySenders provides a powerful RESTful API for automating:
      - Domain management
      - Email account creation
      - Authentication record setup (DMARC, SPF, DKIM)
      - SSL implementation
      - High-deliverability email sending

      Note**: Please include the **apikey** in the request headers for all requests.
    
Server: https://server.skysenders.ai
Client Libraries

Domains

Fetch all domains

API endpoint to fetch all domains

Query Parameters
  • search_text
    Type:string
    max: 
    70
  • is_external_domain
    Type:boolean
  • is_deleted
    Type:boolean
  • offset
    Type:integer
    min: 
    0

    Integer numbers.

  • limit
    Type:integer
    max: 
    50

    Integer numbers.

Headers
  • apikey
    Type:string

    API key for authentication

Responses
  • 200

    Domain fetch successful

  • 500

    Internal server error

Request Example forGET/api/v1/domains/fetch-all
curl https://server.skysenders.ai/api/v1/domains/fetch-all
{
  "domain_list": [
    {
      "id": 1,
      "domain_name": "…",
      "created_at": "2025-06-03T08:42:17.026Z",
      "is_external_domain": true,
      "is_domain_verified": true,
      "is_deleted": true,
      "is_deleted_by_sub_failure": true,
      "forwarding_domain": "…",
      "custom_tracking_url": "…",
      "region": "…",
      "mailboxes_count": 1,
      "email_server_type": "…",
      "status": "…",
      "status_message": "…",
      "ph_id": 1,
      "sent_count": 1,
      "reply_count": 1,
      "bounce_count": 1,
      "skipped_sent_count": 1,
      "skipped_reply_count": 1
    }
  ],
  "total_count": 1,
  "offset": 1,
  "limit": 1
}