Skip to content
GigAI Tools

Developer API / docs

JSON to YAML API

Convert a JSON document to YAML.

POSThttps://api.gigai.tools/v1/jobsAsync

Runs as the json-to-yaml operation inside a job. Needs a key with the jobs:write scope.

Options

No options - the input file is everything.

Limits

  • Input: json (one file, checked by content, never by extension).
  • Max input size: 10 MB.
  • Output: yaml.
  • Time budget: 60 seconds, then the task fails with the timeout code.
  • Engine: js-yaml.

Inside a bigger job

Chain it: any task can consume this one's output by naming it in input. The recipes show working pipelines.

as one task in a graph

"step": { "operation": "json-to-yaml", "input": ["previous-task"] }
Was this page helpful?