For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Sign inBook a demo
DocsReferenceChangelog
DocsReferenceChangelog
  • Introduction
    • SDKs
    • Errors
  • Humanloop API
      • GETList For Project
      • GETList For Project
      • GETList
      • POSTCreate
      • GETGet
      • DELDelete
      • PATCHUpdate
      • GETList Configs
      • POSTCreate Feedback Type
      • PATCHUpdate Feedback Types
      • POSTExport
        • GETList Deployed Configs
        • PATCHDeploy Config
        • DELDelete Deployed Config
LogoLogo
Sign inBook a demo
Humanloop APIProjectsDeployed Config

List Deployed Configs

GET
https://api.humanloop.com/v4/projects/:id/deployed-configs
GET
/v4/projects/:id/deployed-configs
$curl https://api.humanloop.com/v4/projects/id/deployed-configs \
> -H "X-API-KEY: <apiKey>"
1[
2 {
3 "project_id": "project_id",
4 "project_name": "project_name",
5 "environment_id": "environment_id",
6 "environment_name": "environment_name",
7 "environment_tag": "environment_tag",
8 "model_config_id": "model_config_id",
9 "model_config_name": "model_config_name"
10 }
11]
Get an array of environments with the deployed configs associated to your project.
Was this page helpful?
Previous

Deploy Config

Next
Built with

Authentication

X-API-KEYstring
API Key authentication via header

Path parameters

idstringRequired

String ID of project. Starts with pr_.

Response

Successful Response
project_idstring

String ID of project the model config belongs to. Starts with pr_.

project_namestring
Name of the project the model config belongs to.
environment_idstring
The ID of the environment.
environment_namestring
The name of the environment.
environment_tagstring
Tag for the environment e.g. 'default' or 'other'.
model_config_idstring
Model config unique identifier generated by Humanloop.
model_config_namestring
A friendly display name for the model config.

Errors

422
Deployed Config List Request Unprocessable Entity Error