Skip to main content

Documentation Index

Fetch the complete documentation index at: https://arize-ax.mintlify.dev/docs/llms.txt

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

The projects functions are currently in BETA. The API may change without notice. A one-time warning is emitted on first use.

List Projects

import { listProjects } from "@arizeai/ax-client";

const { data: projects, pagination } = await listProjects({
  space: "my-space",  // space name or ID (optional)
  limit: 10,
});

Create a Project

import { createProject } from "@arizeai/ax-client";

const project = await createProject({
  space: "my-space",  // space name or ID
  name: "your_project_name",
});

Get a Project

import { getProject } from "@arizeai/ax-client";

// By ID
const project = await getProject({ project: "your_project_id" });

// By name (requires space)
const project = await getProject({ project: "my-project", space: "my-space" });

Delete a Project

import { deleteProject } from "@arizeai/ax-client";

// By ID
await deleteProject({ project: "your_project_id" });

// By name (requires space)
await deleteProject({ project: "my-project", space: "my-space" });