Nanonets · Arazzo Workflow

Nanonets Upload Training URLs and Train

Version 1.0.0

Add training images to an OCR model from public URLs, then start training.

1 workflow 1 source API 1 provider
View Spec View on GitHub Artificial IntelligenceOCRDocument AIIntelligent Document ProcessingData ExtractionWorkflow-AutomationComputer-VisionNo-CodeArazzoWorkflows

Provider

nanonets

Workflows

upload-training-urls-and-train
Upload training images by URL and start a training run.
Registers public training image URLs with a Nanonets OCR model and then queues a training job.
2 steps inputs: authorization, data, modelId, urls outputs: trainResponse, uploadResponse
1
uploadTrainingUrls
Register the public training image URLs against the model.
2
trainModel
Trigger training (or retraining) on the model after the URLs are registered.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Nanonets Upload Training URLs and Train
  summary: Add training images to an OCR model from public URLs, then start training.
  description: >-
    A URL-driven variant of the training-prep flow. The workflow registers one or
    more publicly accessible training image URLs against the target Nanonets OCR
    model and then triggers a training run on the model. 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: ocrTrainApi
  url: ../openapi/nanonets-ocr-train-api-openapi.yml
  type: openapi
workflows:
- workflowId: upload-training-urls-and-train
  summary: Upload training images by URL and start a training run.
  description: >-
    Registers public training image URLs with a Nanonets OCR model and then
    queues a training job.
  inputs:
    type: object
    required:
    - authorization
    - modelId
    - urls
    properties:
      authorization:
        type: string
        description: HTTP Basic credential header value (Basic <base64 of apiKey:>).
      modelId:
        type: string
        description: Unique identifier for the Nanonets OCR model to train.
      urls:
        type: array
        description: Publicly accessible URLs of the training images.
        items:
          type: string
      data:
        type: string
        description: Optional JSON string describing the annotation for each URL.
  steps:
  - stepId: uploadTrainingUrls
    description: Register the public training image URLs against the model.
    operationId: ocrModelUploadUrlsByModelIdPost
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: model_id
      in: path
      value: $inputs.modelId
    requestBody:
      contentType: application/json
      payload:
        urls: $inputs.urls
        data: $inputs.data
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      uploadResponse: $response.body
  - stepId: trainModel
    description: Trigger training (or retraining) on the model after the URLs are registered.
    operationId: ocrModelTrainByModelIdPost
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: model_id
      in: path
      value: $inputs.modelId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      trainResponse: $response.body
  outputs:
    uploadResponse: $steps.uploadTrainingUrls.outputs.uploadResponse
    trainResponse: $steps.trainModel.outputs.trainResponse

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/nanonets-upload-training-urls-and-train-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.