StarriseStarrise API
OverviewGuideAPI

Responses API

OpenAI Responses API for agentic workflows with built-in tool and state handling.

EndpointMethod
/v1/responsesPOST
/v1/responses/compactPOST

Create Response

curl https://api.starrise.ai/v1/responses \
  -H "Authorization: Bearer sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-4o",
    "input": "Summarize the latest project status."
  }'

Compaction

curl https://api.starrise.ai/v1/responses/compact \
  -H "Authorization: Bearer sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{ ... }'

Use the OpenAI SDK with client.responses.create(...) and base_url pointed at Starrise-api.

Availability depends on upstream channel support for the selected model.

On this page