Skip to main content
GET
/
instance
/
{name}
get instance
curl --request GET \
  --url https://app.xano.com/api:meta/instance/{name} \
  --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"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

name
string
required

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
I