Use Pylip API keys to call one OpenAI-compatible endpoint, route across Pylip model aliases, and track usage from the console. Public endpoints never expose the underlying model providers.
curl https://pylip.com/api/v1/chat/completions \
-H "Authorization: Bearer $PYLIP_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "pylip-auto",
"messages": [{ "role": "user", "content": "Draft release notes from this diff" }]
}'GET
/api/v1/modelsList public Pylip model aliases, context windows, and published API prices.
POST
/api/v1/chat/completionsOpenAI-compatible chat completions through Pylip LLM routing.
POST
/api/searchGrounded search answer with linked sources.
POST
/api/peoplePeople profile lookup and summary output.
POST
/api/xsearchRecent X-focused retrieval and synthesis.
POST
/api/redditReddit retrieval and synthesis response.