Skip to main content
GET
/
processes
/
{pid}
Get a process
curl --request GET \
  --url http://localhost:7687/processes/{pid}
{
  "pid": 1,
  "ref": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://modelcontrolinterface.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

pid
integer
required

Numeric process identifier.

Required range: x > 0

Response

Process snapshot.

Process status snapshot returned by process management endpoints.

pid
integer
required

Numeric process identifier assigned by the API.

Required range: x > 0
state
enum<string>
required

Current lifecycle state of the process.

Available options:
idle,
queued,
running,
terminating
status
enum<string> | null
required

Terminal outcome of the process when it reaches the idle state.

Available options:
failed,
success,
timeout,
canceled,
null
ref
string

Optional caller-supplied reference string used to group related processes.

Minimum string length: 1
Last modified on May 14, 2026