Cross-Provider Workflow

NVIDIA NIM Summary to SendGrid Digest

Version 1.0.0

Summarize content with NVIDIA NIM, then email the digest via SendGrid.

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

Providers Orchestrated

nvidia-nim sendgrid

Workflows

summarize-and-email
Summarize content with NVIDIA NIM and email it via SendGrid.
Sends content to NVIDIA NIM chat completions for a digest summary, captures the summary, and emails it to the subscriber through SendGrid.
2 steps inputs: content, model, subscriberEmail outputs: digest, mailStatus
1
summarize-content
$sourceDescriptions.nvidiaNimApi.createChatCompletion
Ask NVIDIA NIM to summarize the content into a digest.
2
email-digest
$sourceDescriptions.sendgridApi.SendMail
Email the digest to the subscriber via SendGrid.

Source API Descriptions

Arazzo Workflow Specification

ai-nvidia-summarize-to-sendgrid-workflow.yml Raw ↑
arazzo: 1.0.1
info:
  title: NVIDIA NIM Summary to SendGrid Digest
  summary: Summarize content with NVIDIA NIM, then email the digest via SendGrid.
  description: >-
    A cross-provider AI enrichment chain that summarizes a block of content with
    NVIDIA NIM chat completions and emails the digest to a subscriber through
    SendGrid. Demonstrates an AI-generated newsletter digest spanning two
    providers in one Arazzo workflow.
  version: 1.0.0
sourceDescriptions:
  - name: nvidiaNimApi
    url: https://raw.githubusercontent.com/api-evangelist/nvidia-nim/refs/heads/main/openapi/nvidia-nim-chat-api-openapi.yml
    type: openapi
  - name: sendgridApi
    url: https://raw.githubusercontent.com/api-evangelist/sendgrid/refs/heads/main/openapi/sendgrid-mail-send-api-openapi.yml
    type: openapi
workflows:
  - workflowId: summarize-and-email
    summary: Summarize content with NVIDIA NIM and email it via SendGrid.
    description: >-
      Sends content to NVIDIA NIM chat completions for a digest summary, captures
      the summary, and emails it to the subscriber through SendGrid.
    inputs:
      type: object
      properties:
        content:
          type: string
        model:
          type: string
        subscriberEmail:
          type: string
    steps:
      - stepId: summarize-content
        description: Ask NVIDIA NIM to summarize the content into a digest.
        operationId: $sourceDescriptions.nvidiaNimApi.createChatCompletion
        requestBody:
          contentType: application/json
          payload:
            model: $inputs.model
            messages:
              - role: user
                content: "Summarize the following content into a short email digest: $inputs.content"
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          digest: $response.body#/choices/0/message/content
      - stepId: email-digest
        description: Email the digest to the subscriber via SendGrid.
        operationId: $sourceDescriptions.sendgridApi.SendMail
        requestBody:
          contentType: application/json
          payload:
            personalizations:
              - to:
                  - email: $inputs.subscriberEmail
                subject: Your content digest
            from:
              email: digest@example.com
            content:
              - type: text/plain
                value: $steps.summarize-content.outputs.digest
        successCriteria:
          - condition: $statusCode == 202
        outputs:
          mailStatus: $statusCode
    outputs:
      digest: $steps.summarize-content.outputs.digest
      mailStatus: $steps.email-digest.outputs.mailStatus

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/ai-nvidia-summarize-to-sendgrid-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.