Skip to main content
The ax projects commands let you create, retrieve, and manage projects on the Arize platform.

ax projects list

List all projects in a space.
ax projects list [--space <id>] [--limit <n>] [--cursor <cursor>]
OptionDescription
--spaceFilter by space name or ID
--limitMaximum number of results to return
--cursorPagination cursor for the next page
Example:
ax projects list --space sp_abc123

ax projects get

Retrieve a project by name or ID.
ax projects get <name-or-id> [--space <id>]
OptionDescription
--spaceSpace name or ID (required when using a project name instead of ID)
Examples:
ax projects get proj_abc123
ax projects get my-project --space my-space

ax projects create

Create a new project.
ax projects create --name <name> --space <id>
OptionDescription
--nameName for the new project
--spaceSpace name or ID to create the project in
Example:
ax projects create --name "my-project" --space sp_abc123

ax projects delete

Delete a project.
ax projects delete <name-or-id> [--space <id>] [--force]
OptionDescription
--spaceSpace name or ID (required when using a project name instead of ID)
--forceSkip the confirmation prompt
Examples:
ax projects delete proj_abc123
ax projects delete my-project --space my-space --force