Quickstart
Use this path to confirm that your gateway URL, API key, and model name work before configuring a coding tool.
Prepare three values
- Gateway URL:
https://www.prysmapi.cn - API key: the Prysm API key shown in Console
- Model name: the exact public model name shown in Model Routes or the model marketplace
Send a test request
curl https://www.prysmapi.cn/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_PRYSM_API_KEY" \
-d '{
"model": "MODEL_NAME",
"messages": [
{"role": "user", "content": "Reply with the word connected."}
]
}'
Expected result
The response should include an assistant message with connected.
Next step
Open Tool Setup and choose the integration path for your coding tool.