Skip to main content
GET
/
instance
browse instances
curl --request GET \
  --url https://app.xano.com/api:meta/instance \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "x1234-4567-8901",
    "display": "My Instance",
    "xano_domain": "x1234-4567-8901.n7.xano.com",
    "custom_domain": "<string>",
    "rate_limit": true,
    "meta_api": "https://x1234-4567-8901.n7.xano.com/api:meta",
    "meta_swagger": "https://x1234-4567-8901.n7.xano.com/apispec:meta?type=json"
  }
]
The GET request will provide a list of Instances associated with an account.
  • The response provides both the Xano domain and the custom domain (if applicable).
  • The meta_api value will provide access to the Metadata API for the given Instance.
  • The JSON of the Metadata API Swagger for the Instance is also provided.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Success!

name
string
default:x1234-4567-8901
display
string
default:My Instance
xano_domain
string
default:x1234-4567-8901.n7.xano.com
custom_domain
string
rate_limit
boolean
meta_api
string
default:https://x1234-4567-8901.n7.xano.com/api:meta
meta_swagger
string
default:https://x1234-4567-8901.n7.xano.com/apispec:meta?type=json