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 projects = await listProjects({
  space: "your_space_id",
  limit: 10,
});

Create a Project

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

const project = await createProject({
  space: "your_space_id",
  name: "your_project_name",
});

Get a Project

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

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

Delete a Project

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

await deleteProject({
  project: "your_project_id",
});