Skip to main content
POST
/
api
/
v2
/
projects
/
episode_count
/
get
{
  "count": 1
}

Body

application/json

Specification model for retrieving a project.

This model defines the parameters required to fetch an existing project. Both the organization ID and project ID follow the standard SafeId validation rules.

The combination of org_id and project_id uniquely identifies the project to retrieve.

org_id
string
required
The unique identifier of the organization.

- Must not contain slashes (`/`).
- Must contain only letters, numbers, underscores, hyphens, and Unicode
characters (e.g., Chinese/Japanese/Korean). No slashes or other symbols
are allowed.

This value determines the namespace the project belongs to.
project_id
string
required
The identifier of the project.

- Must be unique within the organization.
- Must not contain slashes (`/`).
- Must contain only letters, numbers, underscores, hyphens, and Unicode
characters (e.g., Chinese/Japanese/Korean). No slashes or other symbols
are allowed.

This ID is used in API paths and resource locations.

Response

Successful Response

Response model representing the number of episodes associated with a project.

This model is typically returned by analytics or monitoring endpoints that track usage activity (e.g., number of computation episodes, workflow runs, or operational cycles).

The count reflects the current recorded total at the time of the request.

count
integer
required

The total number of episodic memories in the project.

Required range: x >= 0