Skip to main content
This endpoint allows you to retrieve all AI models available for your API key. Use this to discover which models you can access for chat completions, embeddings, and other AI operations.
New to Paradigm API? Make sure you’ve configured your instance settings first. See Instance Configuration to set up your environment for public or private instances.
Model visibilityPlease note that the listed models are the models accessible for your API key. If your API key has not been granted access to a model, you will not find this model in the response coming from the API endpoint.If you don’t find a specific model in the response, from the admin interface please check that:
  • The model exists in Paradigm
  • Your API key has access to this model

Prerequisites

  • A Paradigm API key: if you do not have one, go to your Paradigm profile (/settings/api-key in your instance) and generate a new API key.

Usage methods

There are several ways to call the endpoint:
  1. With the python requests package
  2. Through a curl request: for quick testing or first-time use

cURL request

If you would prefer sending a request to Paradigm with a simple cURL command, here is an example:
curl --request GET \
  --url $PARADIGM_BASE_URL/models \
  --header 'Authorization: Bearer $PARADIGM_API_KEY'
I