GET
/
content
/
v2
/
content-models
/
{id}
Retrieve a Single Content Model
curl --request GET \
  --url https://apis.experro.app/content/v2/content-models/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'x-environment-id: <x-environment-id>' \
  --header 'x-tenant-id: <x-tenant-id>' \
  --header 'x-workspace-id: <x-workspace-id>'
{
  "Status": "success",
  "Data": {
    "record": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "internal_name": "<string>",
      "name": "<string>",
      "type": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "template": "<string>",
      "act_as_web_page": true,
      "is_localization_enabled": true,
      "group_id": "<string>",
      "description": "<string>",
      "is_versionable": true,
      "fields": [
        {
          "component_id": "<string>",
          "destination_relation_field_id": "<string>",
          "field_properties": {},
          "is_required": true,
          "relation_type": "<string>",
          "position": 123,
          "is_removable": true,
          "is_editable": true
        }
      ]
    },
    "_meta_": {
      "tenant_id": "<string>",
      "workspace_id": "<string>",
      "content_model_id": "<string>"
    }
  }
}
Before calling this endpoint, make sure you’ve generated an API token and picked the correct domain. See Authentication & Base URLs.

Authorizations

Authorization
string
header
required

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

Headers

x-tenant-id
string
required

Identifier for the tenant. Ensures data isolation per tenant.

x-workspace-id
string
required

Workspace identifier within the tenant. Scopes resources to a specific workspace.

x-environment-id
string
required

Unique identifier of the target environment. Used to scope the API call to a specific deployment environment.

Example:

"PRODUCTION-15a0f8c2-a5e8-4e40-ae74-cb1389d22f45-w49jkngj"

Path Parameters

id
string
required

Unique identifier of the content model to retrieve.

Query Parameters

locale
string
required

Specifies the language or region for the response data

Response

Successful response with the model definition and metadata.

The response is of type object.