Splio Export API

The Export API from Splio — 1 operation(s) for export.

Operations 1

GET /reports/smtprelay/{action_id}/recipients List recipients of a forward campaign

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/splio-export-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

splio-export-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Splio Export API
  version: 1.0.0
  description: 'Operations tagged Export across 2 of this provider''s published API definitions: splio-doc-swagger2.json, splio-customer-platform-openapi.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.splio.com
- url: http://api.splio.com
tags:
- name: Export
paths:
  /reports/smtprelay/{action_id}/recipients:
    get:
      summary: List recipients of a forward campaign
      description: List recipients of a campaign.
      parameters:
      - name: action_id
        in: path
        required: true
        description: Campaign action's id.
        schema:
          type: string
      - name: per_page
        in: query
        required: false
        description: Number of items displayed per page.
        schema:
          type: integer
          default: 20
          maximum: 1000
          minimum: 1
      - name: page_number
        in: query
        required: false
        description: Page number.
        schema:
          type: integer
          default: 1
          minimum: 1
      responses:
        '200':
          description: Recipients of a smtp relay campaign.
          content:
            application/json:
              example:
                count_element: 61
                current_page: 3
                per_page: 2
                elements:
                - id: 6
                  extid: '6'
                  rcpt: john_smith@mymail.com
                  subject: new products
                  status: done
                  smtpmsg: 250 2.0.0 OK 1456470112 lp7si14301264wjb.73 - gsmtp
                  openings: 2
                  last_open_date: '2018-09-13 09:00:00'
                  clicks: null
                  last_click_date: null
                  unsub: null
                  spam_complaint: null
                  sales_count: null
                  sales_amount: null
                - id: 7
                  extid: 7ert4
                  rcpt: joe_dalton@softmail.com
                  subject: new products
                  status: hard
                  smtpmsg: '550 Requested action not taken: mailbox unavailable'
                  openings: null
                  last_open_date: null
                  clicks: null
                  last_click_date: null
                  unsub: null
                  spam_complaint: null
                  sales_count: 1
                  sales_amount: 275
        '404':
          description: Action not found.
          content:
            application/json:
              example:
                status: 404
                errors:
                - error_key: action_id
                  error: wrong_value
                  error_description: Campaign not found for action_id 50.
        '400':
          description: The request validation failed.
          x-readme: BODYBODY
          content:
            application/json:
              example:
                status: 400
                errors:
                - error_key: field_1
                  error: wrong_value
                  error_description: The request was malformed and it is unable to be processed. Please review and try again.
        '401':
          description: Authentication failed.
        '403':
          description: Forbidden.
      tags:
      - Export
      security:
      - Bearer: []
    servers:
    - url: https://api.splio.com
    - url: http://api.splio.com
components:
  securitySchemes:
    Bearer:
      name: Authorization
      type: apiKey
      in: header
      description: "For accessing the API a valid JWT token must be passed in all requests in\nthe 'Authorization' header.\n\n\nA valid JWT token is generated by the Authorization API and returned as answer of a call\nto the route /authenticate giving a valid user, password & universe.\n\n\nThe following syntax must be used in the 'Authorization' header :\n\n    Bearer xxxxxx.yyyyyyy.zzzzzz\n"
x-refined-from:
- splio-doc-swagger2.json
- splio-customer-platform-openapi.json