Relay App · JSON Structure

Relay App Workflow Structure

Structural overview of the Relay.app automation platform entities and their relationships.

Type: Properties: 0
AutomationWorkflowsIntegrationNo-CodeArtificial IntelligenceWebhook

Relay App Workflow Structure is a JSON Structure definition published by Relay App.

Meta-schema:

JSON Structure

Raw ↑
{
  "title": "Relay App Workflow API Structure",
  "description": "Structural overview of the Relay.app automation platform entities and their relationships.",
  "version": "1.0.0",
  "entities": {
    "Workflow": {
      "description": "An automated workflow definition in Relay.app.",
      "fields": {
        "id": { "type": "string", "description": "Unique workflow identifier." },
        "name": { "type": "string", "description": "Workflow name." },
        "description": { "type": "string" },
        "status": { "type": "enum", "values": ["active", "inactive", "draft"] },
        "triggerType": { "type": "enum", "values": ["webhook", "scheduled", "manual", "app", "form", "table", "batch", "rss"] },
        "createdAt": { "type": "datetime" },
        "updatedAt": { "type": "datetime" }
      },
      "relations": {
        "runs": { "type": "one-to-many", "entity": "WorkflowRun" }
      }
    },
    "WorkflowRun": {
      "description": "A single execution instance of a workflow.",
      "fields": {
        "id": { "type": "string", "description": "Unique run identifier." },
        "workflowId": { "type": "string", "description": "ID of the parent workflow." },
        "status": { "type": "enum", "values": ["running", "completed", "failed", "paused", "cancelled"] },
        "startedAt": { "type": "datetime" },
        "completedAt": { "type": "datetime", "nullable": true },
        "error": { "type": "string", "nullable": true },
        "inputData": { "type": "object", "description": "Payload data provided at trigger time." }
      },
      "relations": {
        "workflow": { "type": "many-to-one", "entity": "Workflow" }
      }
    },
    "WebhookTrigger": {
      "description": "A webhook endpoint that triggers a workflow run when called.",
      "fields": {
        "webhookId": { "type": "string", "description": "Unique webhook URL identifier." },
        "method": { "type": "enum", "values": ["GET", "POST"] },
        "deduplicationKey": { "type": "string", "nullable": true, "description": "Key for preventing duplicate runs." },
        "payload": { "type": "object", "description": "JSON data sent with the webhook request." }
      },
      "relations": {
        "workflow": { "type": "many-to-one", "entity": "Workflow" }
      }
    }
  }
}

Work with this as data

Every JSON Structure 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 json structure

4 MCP tools reach this
  • find_json_structuresBrowse and filter every JSON Structure 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 JSON Structure
curl "https://apis.io/api/v1/json-structures/relay-app-workflow-structure"
All json structure
curl "https://apis.io/api/v1/json-structures?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.