ReadMe · Arazzo Workflow

ReadMe Stand Up A New Version With Starter Docs

Version 1.0.0

Create a branch (version), add a category, and seed it with a first guide.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub DocumentationDeveloper HubAPI ReferencePortalAnalyticsArtificial IntelligenceMCPBi-Directional SyncArazzoWorkflows

Provider

readme

Workflows

create-branch-with-guide
Create a new branch, a category on it, and a starter guide in the category.
Creates a branch, then a category on the new branch, then a guide page assigned to that category to seed the version with starter content.
3 steps inputs: apiKey, branchName, categoryTitle, guideBody, guideTitle outputs: branchName, categorySlug, guideSlug
1
createBranch
{$sourceDescriptions.branchesApi.url}#/paths/~1branches/post
Create a new branch (version) to hold the starter documentation.
2
createCategory
{$sourceDescriptions.categoriesApi.url}#/paths/~1branches~1{branch}~1categories/post
Create a guide-type category on the newly created branch.
3
createGuide
{$sourceDescriptions.guidesApi.url}#/paths/~1branches~1{branch}~1guides/post
Create a starter guide assigned to the new category.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: ReadMe Stand Up A New Version With Starter Docs
  summary: Create a branch (version), add a category, and seed it with a first guide.
  description: >-
    When cutting a new version of an API hub, teams need a fresh branch plus an
    initial documentation skeleton. This flow creates the branch, creates a
    sidebar category on it, and then creates a starter guide assigned to that
    category — producing a ready-to-edit version in a single pass. 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: branchesApi
  url: ../openapi/readme-branches-api-openapi.yml
  type: openapi
- name: categoriesApi
  url: ../openapi/readme-categories-api-openapi.yml
  type: openapi
- name: guidesApi
  url: ../openapi/readme-guides-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-branch-with-guide
  summary: Create a new branch, a category on it, and a starter guide in the category.
  description: >-
    Creates a branch, then a category on the new branch, then a guide page
    assigned to that category to seed the version with starter content.
  inputs:
    type: object
    required:
    - branchName
    - categoryTitle
    - guideTitle
    - guideBody
    properties:
      branchName:
        type: string
        description: The name of the new branch (version) to create (e.g. "v2.1").
      categoryTitle:
        type: string
        description: The display title for the starter category.
      guideTitle:
        type: string
        description: The display title for the starter guide page.
      guideBody:
        type: string
        description: The Markdown body content for the starter guide.
      apiKey:
        type: string
        description: ReadMe API key used as a Bearer token.
  steps:
  - stepId: createBranch
    description: Create a new branch (version) to hold the starter documentation.
    operationPath: '{$sourceDescriptions.branchesApi.url}#/paths/~1branches/post'
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.apiKey"
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.branchName
        isStable: false
        isBeta: true
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      branchName: $response.body#/name
  - stepId: createCategory
    description: Create a guide-type category on the newly created branch.
    operationPath: '{$sourceDescriptions.categoriesApi.url}#/paths/~1branches~1{branch}~1categories/post'
    parameters:
    - name: branch
      in: path
      value: $steps.createBranch.outputs.branchName
    - name: Authorization
      in: header
      value: "Bearer $inputs.apiKey"
    requestBody:
      contentType: application/json
      payload:
        title: $inputs.categoryTitle
        type: guide
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      categorySlug: $response.body#/slug
  - stepId: createGuide
    description: Create a starter guide assigned to the new category.
    operationPath: '{$sourceDescriptions.guidesApi.url}#/paths/~1branches~1{branch}~1guides/post'
    parameters:
    - name: branch
      in: path
      value: $steps.createBranch.outputs.branchName
    - name: Authorization
      in: header
      value: "Bearer $inputs.apiKey"
    requestBody:
      contentType: application/json
      payload:
        title: $inputs.guideTitle
        body: $inputs.guideBody
        category: $steps.createCategory.outputs.categorySlug
        hidden: false
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      guideSlug: $response.body#/slug
  outputs:
    branchName: $steps.createBranch.outputs.branchName
    categorySlug: $steps.createCategory.outputs.categorySlug
    guideSlug: $steps.createGuide.outputs.guideSlug

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/readme-create-branch-with-guide-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.