Skip to main content
GET
/
api
/
job-executions-new
/
project-models
Get distinct AI models used by job executions in a project
curl --request GET \
  --url https://api.mentionlab.io/api/job-executions-new/project-models \
  --header 'x-project-id: <x-project-id>'
{
  "models": [
    "gpt-4o",
    "gemini-1.5-pro"
  ]
}

Headers

x-project-id
string
required

Project ID to specify the project context

Response

200 - application/json
models
string[]
required

Unique AI model names used by job executions in this project.

Example:
["gpt-4o", "gemini-1.5-pro"]