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. ```