docs: fix spacing for the quickstart curl command (#8731)

fix-curl-spacing
This commit is contained in:
Mendon Kissling 2025-06-25 13:37:34 -04:00 committed by GitHub
commit 6c76957f3e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -134,15 +134,15 @@ Langflow provides code snippets to help you get started with the Langflow API.
<TabItem value="curl" label="curl">
```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.
```