Ingest sensor data
Bring MCAP, LiDAR, video, ROS bags, or LeRobot data into one dataset model.
Physical AI developer platform
Use typed SDKs, the CLI, REST, or MCP to ingest sensor data, inspect dataset health, govern releases, and carry model feedback into the next training cycle.
First loop
Enter your key through a no-echo prompt and query the public API while the credential stays isolated inside a temporary shell.
Bash or Zsh · curl · an Avala API key
(
printf "Avala API key: " &&
IFS= read -rs AVALA_API_KEY &&
printf "\n" &&
export AVALA_API_KEY &&
curl \
--fail \
--silent \
--show-error \
-H "X-Avala-Api-Key: $AVALA_API_KEY" \
"https://api.avala.ai/api/v1/datasets/?limit=10"
)Programmable workflow
Use stable interfaces for the operational steps between raw sensor data and the next model run.
Bring MCAP, LiDAR, video, ROS bags, or LeRobot data into one dataset model.
Check indexing, sequences, frame counts, and calibration before data enters production.
Launch project-scoped auto-label jobs and keep human review inside the same governed workflow.
Create a dataset or project export and track it through completion for downstream training.
Hosted MCP
Connect one hosted endpoint to inspect the datasets, captures, quality evidence, and operational state your account can access.
Read the MCP guidehttps://mcp.avala.ai/mcpAccess follows your Avala permissions. Reviewed staff actions appear only for eligible operators and require explicit confirmation.
Interfaces
Python, TypeScript, the public REST API, and hosted MCP share the same Avala data model.
Sync and async clients, cursor pagination, typed models, and explicit errors.
pip install avalaTyped resource clients with zero runtime dependencies and formal support for Node.js 18+.
npm install @avala-ai/sdkUse the public api.avala.ai endpoint from any language or authenticated HTTP client.
curl --fail-with-body -H "X-Avala-Api-Key: $AVALA_API_KEY" "https://api.avala.ai/api/v1/datasets/?limit=10"Connect compatible AI tools to permission-scoped dataset and operations context.
https://mcp.avala.ai/mcpTechnical walkthrough
We will map the interfaces, storage path, quality gates, and release contract around one real workflow.