Cross-Provider Workflow

Meta User Feed to Notion Log and Slack Notify

Version 1.0.0

Pull a Meta user feed, archive it to Notion, then notify Slack.

1 workflow 3 source APIs 3 providers
View Spec View on GitHub ArazzoWorkflowsCross-Provider

Providers Orchestrated

meta notion slack

Workflows

meta-feed-to-notion-and-slack
Get a Meta user feed, log to Notion, then notify Slack.
Fetches a Meta user's feed, records a summary page in Notion, then posts a Slack message confirming the archive with a link to the Notion page.
3 steps inputs: notionDatabaseId, slackChannel, userId outputs: messageTs, pageId
1
get-feed
$sourceDescriptions.metaApi.getUserFeed
Retrieve the Meta user's feed via the Graph API.
2
log-to-notion
$sourceDescriptions.notionApi.createPage
Archive a summary of the feed as a Notion page.
3
notify-slack
$sourceDescriptions.slackChatApi.postChatPostmessage
Notify Slack that the feed was archived to Notion.

Source API Descriptions

Arazzo Workflow Specification

soc-meta-user-feed-to-notion-log-slack-notify-workflow.yml Raw ↑
arazzo: 1.0.1
info:
  title: Meta User Feed to Notion Log and Slack Notify
  summary: Pull a Meta user feed, archive it to Notion, then notify Slack.
  description: >-
    A social listening workflow that retrieves a Meta user's feed via the Graph
    API, archives a summary of the feed as a Notion page, and posts a Slack
    notification that new content was captured. Demonstrates orchestrating a
    social platform, a knowledge base, and a messaging provider in one Arazzo
    workflow.
  version: 1.0.0
sourceDescriptions:
  - name: metaApi
    url: https://raw.githubusercontent.com/api-evangelist/meta/refs/heads/main/openapi/meta-users-api-openapi.yml
    type: openapi
  - name: notionApi
    url: https://raw.githubusercontent.com/api-evangelist/notion/refs/heads/main/openapi/notion-pages-api-openapi.yml
    type: openapi
  - name: slackChatApi
    url: https://raw.githubusercontent.com/api-evangelist/slack/refs/heads/main/openapi/slack-chat-api-openapi.yml
    type: openapi
workflows:
  - workflowId: meta-feed-to-notion-and-slack
    summary: Get a Meta user feed, log to Notion, then notify Slack.
    description: >-
      Fetches a Meta user's feed, records a summary page in Notion, then posts a
      Slack message confirming the archive with a link to the Notion page.
    inputs:
      type: object
      properties:
        userId:
          type: string
        notionDatabaseId:
          type: string
        slackChannel:
          type: string
    steps:
      - stepId: get-feed
        description: Retrieve the Meta user's feed via the Graph API.
        operationId: $sourceDescriptions.metaApi.getUserFeed
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          feedData: $response.body#/data
      - stepId: log-to-notion
        description: Archive a summary of the feed as a Notion page.
        operationId: $sourceDescriptions.notionApi.createPage
        requestBody:
          contentType: application/json
          payload:
            parent:
              database_id: $inputs.notionDatabaseId
            properties:
              Name:
                title:
                  - text:
                      content: Meta feed archive for $inputs.userId
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          pageId: $response.body#/id
      - stepId: notify-slack
        description: Notify Slack that the feed was archived to Notion.
        operationId: $sourceDescriptions.slackChatApi.postChatPostmessage
        requestBody:
          contentType: application/x-www-form-urlencoded
          payload:
            channel: $inputs.slackChannel
            text: Archived Meta feed to Notion page $steps.log-to-notion.outputs.pageId
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          messageTs: $response.body#/ts
    outputs:
      pageId: $steps.log-to-notion.outputs.pageId
      messageTs: $steps.notify-slack.outputs.messageTs

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/soc-meta-user-feed-to-notion-log-slack-notify-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.