---
title: "Retrieve specific metaproperty"
url: "https://earlyaccess.developers.bynder.com/apis/product-layer-metaproperties-api-1/versions/2fb2c968-3ea1-4674-8bb7-a5babf8f5934/paths/api-pim-metaproperties-id/get"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/product-layer-metaproperties-api-1/versions/2fb2c968-3ea1-4674-8bb7-a5babf8f5934.md

# Retrieve specific metaproperty

`GET` `/api/pim/metaproperties/{id}`

Retrieve the details of a specific metaproperty.

## Path parameters

- `id` (string, required)

## Responses

- `200` - Successfully retrieved specific metaproperty

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Product Layer Metaproperties API
  version: 1.0.0
servers:
  - url: https://{your-bynder-domain}/
paths:
  /api/pim/metaproperties/{id}:
    get:
      description: Retrieve the details of a specific metaproperty.
      parameters:
        - in: path
          name: id
          required: true
          schema:
            example: 00000000-0000-0000-0000-0000000000000000
            type: string
      responses:
        "200":
          content:
            application/json:
              schema:
                properties:
                  description:
                    example: Metaproperty for Product A
                    type: string
                  id:
                    example: 00000000-0000-0000-0000-000000000000
                    type: string
                  label:
                    example: Product A
                    type: string
                  mp_options:
                    items:
                      properties:
                        description:
                          example: Metaproperty option 1 for Product A
                          type: string
                        id:
                          example: 00000000-0000-0000-0000-000000000000
                          type: string
                        label:
                          example: Product A option 1
                          type: string
                        metapropertyid:
                          example: 00000000-0000-0000-0000-000000000000
                          type: string
                        name:
                          example: Product A option 1
                          type: string
                        relations:
                          items:
                            properties:
                              description:
                                example: Metaproperty option 1 for Product B
                                type: string
                              id:
                                example: 00000000-0000-0000-0000-000000000000
                                type: string
                              label:
                                example: Product B option 1
                                type: string
                              metapropertyid:
                                example: 00000000-0000-0000-0000-000000000000
                                type: string
                              name:
                                example: Product B option 1
                                type: string
                            type: object
                          type: array
                      type: object
                    type: array
                  name:
                    example: Product A
                    type: string
                type: object
          description: Successfully retrieved specific metaproperty
      security:
        - OAuth2:
            - METAPROPERTYMANAGEMENT
        - permanentToken:
            - METAPROPERTYMANAGEMENT
      summary: Retrieve specific metaproperty
      tags:
        - Metaproperties
security:
  - OAuth2:
      - METAPROPERTYMANAGEMENT
  - permanentToken:
      - METAPROPERTYMANAGEMENT
components:
  securitySchemes:
    OAuth2:
      flows:
        authorizationCode:
          authorizationUrl: https://{your-auth-url}
          scopes:
            METAPROPERTYMANAGEMENT: ""
            metaproperty.view: ""
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
        clientCredentials:
          scopes:
            METAPROPERTYMANAGEMENT: ""
            metaproperty.view: ""
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
      type: oauth2
    permanentToken:
      in: header
      name: Authorization
      type: apiKey
```
