XPNCORE
HomeAPI MarketplacePricingDocumentationBlogFAQ
LoginRegister
XPNCORE

High-quality API marketplace for developers.

Product

  • API Marketplace
  • Pricing
  • AI Models
  • Documentation
  • Blog
  • FAQ
  • System Status

Company

  • About
  • Contact

Legal

  • Terms of Service
  • Privacy Policy
  • Refund Policy

© 2026 XPNCORE. All rights reserved.

OpenAI-compatible · One API key for every model

Interactive documentation
Universal LLM Gateway Quick StartAPI AuthenticationModel DiscoveryChat Completions APIGateway Error CodesRate Limits and Quota
Home/Docs/Model Discovery

Model Discovery

Use GET /v1/models as the authoritative source of public model IDs.

Model Registry is the source of truth for public model IDs, capabilities, pricing, and routes. Users never see upstream accounts or credentials.

The list can change with plans, subscriptions, provider health, or access rules, so clients should refresh it instead of caching forever.

Key points

  • Endpoint: GET /v1/models.
  • The response includes only models the current user may call.
  • A public ID can be provider/model or an alias published by an administrator.
  • Capabilities are checked again server-side when a request executes.

Example request

curl --request GET 'https://api.xpncore.com/v1/models' \
  --max-time 35 \
  --header "Authorization: Bearer $API_KEY"
Open Setup WizardPlayground