Instance

An instance is an isolated environment within a Metorial project. Instances are created via the dashboard (since API keys are scoped to instances). Common setups include production, staging, and development instances.

Instance object

Attributes

object

String

String representing the object's type

id

String

The instance's unique identifier

slug

String

The instance's slug

name

String

The instance's name

organization_id

String

The organization's unique identifier

type

Enum

The instance's type

created_at

Date

The instance's creation date

updated_at

Date

The instance's last update date

project

Object
{
"object": "organization.instance",
"id": "ins_9sTuVwXyZaBcDeFg",
"slug": "production-env",
"name": "Production Environment",
"organization_id": "org_7hNkPqRsTuVwXyZa",
"type": "development",
"created_at": "2026-01-29T12:35:22.304Z",
"updated_at": "2026-01-29T12:35:22.304Z",
"project": {
"object": "organization.project",
"id": "prj_3bCdEfGhJkLmNpQr",
"status": "active",
"slug": "api-integration",
"name": "API Integration",
"organization_id": "org_7hNkPqRsTuVwXyZa",
"created_at": "2026-01-29T12:35:22.304Z",
"updated_at": "2026-01-29T12:35:22.304Z"
}
}

Get instance details

Retrieves metadata and configuration details for a specific instance.

No parameters required
GEThttp://api.metorial.com/instance
curl -X GET "https://api.metorial.com/instance" \
-H "Authorization: Bearer metorial_sk_..."