# Developer Utilities Post Markdown

> Convert a Markdown string to HTML. Useful for rendering user-submitted content, documentation previews, or README files.

- Skill: `gabrielmoreira/developer-utilities-post-markdown` (Agent Skill)
- Install (CLI): `npx skillmds@latest add gabrielmoreira/developer-utilities-post-markdown`
- Raw SKILL.md: https://api.skillmd.com/api/skills/gabrielmoreira/developer-utilities-post-markdown/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Web & Frontend
- Author: gabrielmoreira (https://skillmd.com/u/gabrielmoreira)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/gabrielmoreira/developer-utilities-post-markdown

---


## Endpoint

**POST https://requiems.xyz/v1/technology/markdown**

## Render Markdown

Convert a Markdown string to HTML. Useful for rendering user-submitted content, documentation previews, or README files.

## Parameters

| Name | Type | Required | Location | Description |
| ---- | ---- | -------- | -------- | ----------- |
| `text` | string | yes | body | Markdown string to render |

## Request Example

```json
{
  "text": "# Hello\n\nThis is **bold** text."
}
```

## Response Example

```json
{
  "data": {
    "html": "<h1>Hello</h1>\n<p>This is <strong>bold</strong> text.</p>"
  },
  "metadata": {
    "timestamp": "2026-01-01T00:00:00Z"
  }
}
```

## Response Fields

| Field | Type | Description |
| ----- | ---- | ----------- |
| `html` | string | Rendered HTML output |

## Errors

- `undefined` **400** — text field is missing or empty
- `undefined` **401** — Missing or invalid API key

