Cross-Provider Workflow

Meta Feed to SendGrid Follow-up

Version 1.0.0

Read a Meta user feed, then send a follow-up email via SendGrid.

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

Providers Orchestrated

meta sendgrid

Workflows

meta-feed-and-email-followup
Read a Meta user feed, then send a follow-up email through SendGrid.
Retrieves the feed of posts for a Meta user and, on success, sends a follow-up email to the user through SendGrid.
2 steps inputs: followupMessage, userEmail, userId outputs: emailStatus, feedData
1
get-feed
$sourceDescriptions.metaApi.getUserFeed
Retrieve the user's feed of posts from Meta.
2
send-followup-email
$sourceDescriptions.sendgridMailApi.SendMail
Send a follow-up email to the user via SendGrid.

Source API Descriptions

Arazzo Workflow Specification

msg-meta-feed-to-sendgrid-followup.yml Raw ↑
arazzo: 1.0.1
info:
  title: Meta Feed to SendGrid Follow-up
  summary: Read a Meta user feed, then send a follow-up email via SendGrid.
  description: >-
    A cross-provider workflow that retrieves a user's feed of posts from the
    Meta Graph API and then sends a personalized follow-up email through
    SendGrid's Mail Send API. Demonstrates combining a social engagement source
    with an email follow-up channel in a single 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: sendgridMailApi
    url: https://raw.githubusercontent.com/api-evangelist/sendgrid/refs/heads/main/openapi/sendgrid-mail-send-api-openapi.yml
    type: openapi
workflows:
  - workflowId: meta-feed-and-email-followup
    summary: Read a Meta user feed, then send a follow-up email through SendGrid.
    description: >-
      Retrieves the feed of posts for a Meta user and, on success, sends a
      follow-up email to the user through SendGrid.
    inputs:
      type: object
      properties:
        userId:
          type: string
        userEmail:
          type: string
        followupMessage:
          type: string
    steps:
      - stepId: get-feed
        description: Retrieve the user's feed of posts from Meta.
        operationId: $sourceDescriptions.metaApi.getUserFeed
        parameters:
          - name: user-id
            in: path
            value: $inputs.userId
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          feedData: $response.body
      - stepId: send-followup-email
        description: Send a follow-up email to the user via SendGrid.
        operationId: $sourceDescriptions.sendgridMailApi.SendMail
        requestBody:
          contentType: application/json
          payload:
            personalizations:
              - to:
                  - email: $inputs.userEmail
                subject: Following up with you
            from:
              email: social@example.com
            content:
              - type: text/plain
                value: $inputs.followupMessage
        successCriteria:
          - condition: $statusCode == 202
        outputs:
          emailStatus: $statusCode
    outputs:
      feedData: $steps.get-feed.outputs.feedData
      emailStatus: $steps.send-followup-email.outputs.emailStatus

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/msg-meta-feed-to-sendgrid-followup"
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.