Seismic · Arazzo Workflow

Seismic Top Content Performance Review

Version 1.0.0

Rank top content by a metric, read the leader's library detail, and pull its analytics.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub ArazzoWorkflows

Provider

seismic

Workflows

top-content-performance
Identify the top content item by a metric and pull its detailed analytics.
Ranks the top content by the chosen metric, resolves the leader's library detail, and retrieves its detailed time-series analytics.
3 steps inputs: endDate, metric, startDate outputs: analytics, contentId, name
1
getTopContent
Retrieve the single highest-ranked content item for the chosen metric over the supplied date range.
2
getContentDetail
Read the leading content item's library detail to resolve its name.
3
getItemAnalytics
Retrieve detailed time-series analytics for the top content item over the same date range.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Seismic Top Content Performance Review
  summary: Rank top content by a metric, read the leader's library detail, and pull its analytics.
  description: >-
    A reporting flow that spans the analytics and content libraries. The
    workflow ranks the top-performing content for a chosen metric over a date
    range, reads the leading item's library detail to resolve its name, and then
    retrieves detailed time-series analytics for that item. 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: contentAnalyticsApi
  url: ../openapi/seismic-content-analytics-api-openapi.yml
  type: openapi
- name: contentApi
  url: ../openapi/seismic-content-api-openapi.yml
  type: openapi
workflows:
- workflowId: top-content-performance
  summary: Identify the top content item by a metric and pull its detailed analytics.
  description: >-
    Ranks the top content by the chosen metric, resolves the leader's library
    detail, and retrieves its detailed time-series analytics.
  inputs:
    type: object
    required:
    - metric
    properties:
      metric:
        type: string
        description: Metric to rank content by (views, downloads, shares, engagement, completionRate).
      startDate:
        type: string
        description: Start date for the analytics period (YYYY-MM-DD).
      endDate:
        type: string
        description: End date for the analytics period (YYYY-MM-DD).
  steps:
  - stepId: getTopContent
    description: >-
      Retrieve the single highest-ranked content item for the chosen metric over
      the supplied date range.
    operationId: getTopContent
    parameters:
    - name: metric
      in: query
      value: $inputs.metric
    - name: startDate
      in: query
      value: $inputs.startDate
    - name: endDate
      in: query
      value: $inputs.endDate
    - name: limit
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      contentId: $response.body#/items/0/contentId
  - stepId: getContentDetail
    description: Read the leading content item's library detail to resolve its name.
    operationId: getContentItem
    parameters:
    - name: contentId
      in: path
      value: $steps.getTopContent.outputs.contentId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      contentId: $response.body#/id
      name: $response.body#/name
  - stepId: getItemAnalytics
    description: >-
      Retrieve detailed time-series analytics for the top content item over the
      same date range.
    operationId: getContentItemAnalytics
    parameters:
    - name: contentId
      in: path
      value: $steps.getContentDetail.outputs.contentId
    - name: startDate
      in: query
      value: $inputs.startDate
    - name: endDate
      in: query
      value: $inputs.endDate
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      analytics: $response.body
  outputs:
    contentId: $steps.getContentDetail.outputs.contentId
    name: $steps.getContentDetail.outputs.name
    analytics: $steps.getItemAnalytics.outputs.analytics

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-top-content-performance-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.