Skip to main content
POST
/
api
/
jobs
/
trigger
Trigger an execution for all project queries
curl --request POST \
  --url https://api.mentionlab.io/api/jobs/trigger \
  --header 'Content-Type: application/json' \
  --header 'x-project-id: <x-project-id>' \
  --data '
{
  "aiModels": [
    "gpt-4.1-mini",
    "claude-haiku-4-5",
    "gemini-2.5-flash"
  ],
  "executionCount": 3
}
'
{}

Headers

x-project-id
string
required

Project ID to specify the project context

Body

application/json
aiModels
enum<string>[]
required

List of AI model identifiers to use for analysis

Available options:
gpt-4.1-mini,
gpt-5-mini,
gpt-5-chat-latest,
gpt-5.1-chat-latest,
gpt-5.2-chat-latest,
gpt-5.3-chat-latest,
claude-haiku-4-5,
gemini-2.5-flash,
gemini-3-flash-preview,
sonar,
deepseek-v3.2-maas,
ai-overview,
ai-mode,
scp-ml-chatgpt,
scp-ml-google-ai-mode,
scp-ml-gemini
Example:
[
  "gpt-4.1-mini",
  "claude-haiku-4-5",
  "gemini-2.5-flash"
]
executionCount
number
required

The number of executions (runs) per job item

Required range: x >= 1
Example:

3

Response

201 - application/json

The response is of type object.