Skip to main content

Base URL

https://pulse.suiri.ai/v1

Primary Endpoint

POST https://pulse.suiri.ai/v1/chat/completions

Authentication

Include your API key in the request header: Content-Type: application/json
Authorization: Bearer YOUR_API_KEY
Note: Inference requires an active billing method, even in the demo environment.

Example Request

curl --location https://pulse.suiri.ai/v1/chat/completions \ 
  --header "Content-Type: application/json" \ 
  --header "Authorization: Bearer $API_KEY" \ 
  --data '{ 
    "model": "gemma-2b-it-q4_0", 
    "messages": [ 
      {"role": "system", "content": "You are a helpful assistant."}, 
      {"role": "user", "content": "What is the capital of France?"} 
    ] 
  }'