About this endpoint
What it does
Converts JSON fetched from a public URL into a Markdown file, then returns a pre-signed S3 URL where the generated .md file can be downloaded. The request sends the source JSON URL in the body and can optionally include an output name in the query string.
Query Parameter(s)
| Attribute | Type | Mandatory | Description |
|---|---|---|---|
| output | String | No | Name used for the generated file output. Default: sample-output. |
Request Body
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| url | String | Yes | Publicly accessible URL to a JSON resource. Must return Content-Type of application/json or text/plain. |
Response
Returns a JSON object with a single data string field containing a pre-signed S3 URL to download the generated Markdown file. The response object has exactly one key: data.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| data | String | Yes | Pre-signed S3 URL for downloading the generated Markdown file. |