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 <id>] [--limit <n>] [--cursor <cursor>]
OptionDescription
--space-idFilter by space ID
--limitMaximum number of results to return
--cursorPagination cursor for the next page
Example:
ax projects list --space-id sp_abc123

ax projects get

Retrieve a single project by ID.
ax projects get <project-id>
Example:
ax projects get proj_abc123

ax projects create

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

ax projects delete

Delete a project.
ax projects delete <project-id> [--force]
OptionDescription
--forceSkip the confirmation prompt
Examples:
ax projects delete proj_abc123
ax projects delete proj_abc123 --force