Skip to main content

Overview

The Metadata API is the next evolution of the Developer API. It lets you programmatically manage schema and content for your Xano instances and uses Bearer access tokens for authentication. Base URL: https://app.xano.com/api:meta
⚠️ Beta: The Metadata API is currently in beta.

Authentication

All endpoints below require a Bearer token unless noted otherwise.
Authorization: Bearer <YOUR_ACCESS_TOKEN>
Example using curl:
curl -H "Authorization: Bearer $XANO_ACCESS_TOKEN" \
  https://app.xano.com/api:meta/auth/me

API Endpoints

Authentication

Instance Management

Snippet Management

Snippet Token Management


Common errors

  • 400 — Input Error. Check the request payload for issues.
  • 401 — Unauthorized.
  • 403 — Access denied. Additional privileges are needed.
  • 404 — Not Found.
  • 429 — Rate Limited.
  • 500 — Unexpected error.

Changelog

  • v0.0.1 — Initial beta endpoints for account, instances, and snippet token management.
I