Seismic · Arazzo Workflow

Seismic Export an Analytics Report

Version 1.0.0

Resolve a report by type, read its data, and kick off an export job.

1 workflow 1 source API 1 provider
View Spec View on GitHub ArazzoWorkflows

Provider

seismic

Workflows

export-analytics-report
Resolve a report by type and initiate an export job for it.
Lists reports of a given type, reads the first report's data over a date range, and starts an export job for that report.
3 steps inputs: endDate, format, reportType, startDate outputs: downloadUrl, exportId, reportId
1
findReport
List reports of the requested type, returning the first match.
2
getReport
Read the report data over the supplied date range to confirm it resolves.
3
exportReport
Initiate an export job for the report, returning an export ID and a download URL when the export is ready.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Seismic Export an Analytics Report
  summary: Resolve a report by type, read its data, and kick off an export job.
  description: >-
    Produces a downloadable export of an analytical report. The workflow lists
    available reports filtered by type, reads the first report's data for a date
    range, and then initiates an export job that returns a download URL when
    ready. Every step spells out its request inline so the flow can be read and
    executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: reportsApi
  url: ../openapi/seismic-reports-api-openapi.yml
  type: openapi
workflows:
- workflowId: export-analytics-report
  summary: Resolve a report by type and initiate an export job for it.
  description: >-
    Lists reports of a given type, reads the first report's data over a date
    range, and starts an export job for that report.
  inputs:
    type: object
    required:
    - reportType
    properties:
      reportType:
        type: string
        description: Report type to select (content, user, delivery, engagement, adoption).
      startDate:
        type: string
        description: Start date for the report period (YYYY-MM-DD).
      endDate:
        type: string
        description: End date for the report period (YYYY-MM-DD).
      format:
        type: string
        description: Export format (csv, xlsx, or pdf).
  steps:
  - stepId: findReport
    description: List reports of the requested type, returning the first match.
    operationId: listReports
    parameters:
    - name: type
      in: query
      value: $inputs.reportType
    - name: limit
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      reportId: $response.body#/items/0/id
  - stepId: getReport
    description: Read the report data over the supplied date range to confirm it resolves.
    operationId: getReport
    parameters:
    - name: reportId
      in: path
      value: $steps.findReport.outputs.reportId
    - name: startDate
      in: query
      value: $inputs.startDate
    - name: endDate
      in: query
      value: $inputs.endDate
    - name: format
      in: query
      value: json
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      reportData: $response.body
  - stepId: exportReport
    description: >-
      Initiate an export job for the report, returning an export ID and a
      download URL when the export is ready.
    operationId: exportReport
    parameters:
    - name: reportId
      in: path
      value: $steps.findReport.outputs.reportId
    requestBody:
      contentType: application/json
      payload:
        format: $inputs.format
        startDate: $inputs.startDate
        endDate: $inputs.endDate
    successCriteria:
    - condition: $statusCode == 202
    outputs:
      exportId: $response.body#/exportId
      status: $response.body#/status
      downloadUrl: $response.body#/downloadUrl
  outputs:
    reportId: $steps.findReport.outputs.reportId
    exportId: $steps.exportReport.outputs.exportId
    downloadUrl: $steps.exportReport.outputs.downloadUrl

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • 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 workflow
curl "https://apis.io/api/v1/arazzo/seismic-export-analytics-report-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?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.