Napkin.AI · Arazzo Workflow

Generate a visual from text with Napkin AI

Version 1.0.0

Submit text to Napkin AI, poll the asynchronous request until it completes, then download each generated file (PNG/SVG/PDF/PPT).

1 workflow 1 source API 1 provider
View Spec View on GitHub CompanyArtificial IntelligenceVisualizationDiagramsChartsInfographicsPresentationsContent GenerationDesignDeveloper APIArazzoWorkflows

Provider

napkinai

Workflows

generateVisualFromText
Create a visual request, poll to completion, and download the files.
The Napkin AI visual API is asynchronous. Create a request with text content, poll its status until completed or failed, then download each file listed in generated_files. Status and file URLs expire 30 minutes after generation.
3 steps inputs: content, language, number_of_visuals outputs: generated_files
1
createRequest
Create the asynchronous visual generation request.
2
pollStatus
Poll the request status until it is completed.
3
downloadFile
Download the first generated file. Repeat per entry in generated_files; download within the 30-minute expiry window.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Generate a visual from text with Napkin AI
  version: 1.0.0
  summary: >-
    Submit text to Napkin AI, poll the asynchronous request until it completes,
    then download each generated file (PNG/SVG/PDF/PPT).
# generated: '2026-07-20'
# method: derived
# source: openapi/napkinai-openapi.yml
sourceDescriptions:
- name: visualsApi
  url: ../openapi/napkinai-visuals-api-openapi.yml
  type: openapi
workflows:
- workflowId: generateVisualFromText
  summary: Create a visual request, poll to completion, and download the files.
  description: >-
    The Napkin AI visual API is asynchronous. Create a request with text
    content, poll its status until completed or failed, then download each file
    listed in generated_files. Status and file URLs expire 30 minutes after
    generation.
  inputs:
    type: object
    required: [content]
    properties:
      content:
        type: string
        description: The text Napkin turns into visuals.
      language:
        type: string
        description: Optional but recommended language hint.
      number_of_visuals:
        type: integer
        description: Number of visuals to request.
  steps:
  - stepId: createRequest
    description: Create the asynchronous visual generation request.
    operationId: createVisualRequest
    requestBody:
      contentType: application/json
      payload:
        content: $inputs.content
        language: $inputs.language
        number_of_visuals: $inputs.number_of_visuals
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      request_id: $response.body#/request_id
  - stepId: pollStatus
    description: Poll the request status until it is completed.
    operationId: getVisualRequestStatus
    parameters:
    - name: request-id
      in: path
      value: $steps.createRequest.outputs.request_id
    successCriteria:
    - condition: $statusCode == 200
    - context: $response.body
      condition: $.status == "completed"
    outputs:
      generated_files: $response.body#/generated_files
  - stepId: downloadFile
    description: >-
      Download the first generated file. Repeat per entry in generated_files;
      download within the 30-minute expiry window.
    operationId: downloadVisualFile
    parameters:
    - name: request-id
      in: path
      value: $steps.createRequest.outputs.request_id
    - name: file-id
      in: path
      value: $steps.pollStatus.outputs.generated_files[0].file_id
    successCriteria:
    - condition: $statusCode == 200
  outputs:
    generated_files: $steps.pollStatus.outputs.generated_files

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/napkinai-generate-visual"
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.