Endpoint#

Endpoint
GET https://api.xpluse.plus/anthropic/v1/models
GET https://api.xpluse.plus/anthropic/v1/models/{provider}
GET https://api.xpluse.plus/anthropic/v1/models/{provider}/{model_id}

Use the Anthropic protocol endpoint to list available models, filter by provider, and get model details. This is a public endpoint and does not require an API Key.

cURL
curl https://api.xpluse.plus/anthropic/v1/models
Python
import requests

resp = requests.get("https://api.xpluse.plus/anthropic/v1/models")
for Models in resp.json()["data"]:
    print(Models["id"])

The response structure matches the OpenAI protocol Models endpoint (OpenRouter standard).

Last updated on June 22, 2026