markdown_to_html · v1.0.0 · by apibazzar.admin@gmail.com
Convert Markdown text to HTML
| 필드 | 타입 | 필수 | 설명 |
|---|---|---|---|
| markdown_text | string | 필수 | - |
| 필드 | 타입 | 필수 | 설명 |
|---|---|---|---|
| html | string | 필수 | - |
curl
curl -X POST https://apibazzar-production.up.railway.app/v1/execute \
-H "Authorization: Bearer <YOUR_API_KEY>" \
-H "Content-Type: application/json" \
-d '{
"slug": "markdown_to_html",
"data": {
"markdown_text": "example"
},
"secrets": {}
}'Python SDK
from apibazzar import Client
client = Client(api_key="<YOUR_API_KEY>")
result = client.run(
"markdown_to_html",
data={
"markdown_text": "example"
},
)
print(result)API Key가 없다면 여기서 발급받으세요.