From 6c76957f3e5ed11073144f9d45286f644917ae72 Mon Sep 17 00:00:00 2001 From: Mendon Kissling <59585235+mendonk@users.noreply.github.com> Date: Wed, 25 Jun 2025 13:37:34 -0400 Subject: [PATCH] docs: fix spacing for the quickstart curl command (#8731) fix-curl-spacing --- docs/docs/Get-Started/get-started-quickstart.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/docs/Get-Started/get-started-quickstart.md b/docs/docs/Get-Started/get-started-quickstart.md index 0f9d76250..f98116996 100644 --- a/docs/docs/Get-Started/get-started-quickstart.md +++ b/docs/docs/Get-Started/get-started-quickstart.md @@ -134,15 +134,15 @@ Langflow provides code snippets to help you get started with the Langflow API. - ```text + ```bash curl --request POST \ --url 'http://LANGFLOW_SERVER_ADDRESS/api/v1/run/FLOW_ID?stream=false' \ --header 'Content-Type: application/json' \ --data '{ - "output_type": "chat", - "input_type": "chat", - "input_value": "hello world!" - }' + "output_type": "chat", + "input_type": "chat", + "input_value": "hello world!" + }' # A 200 response confirms the call succeeded. ```