# getFieldMetadataForAsset

<mark style="color:green;">`GET`</mark> `/asset/{asset_id}/fields/{field_name}`

Get field metadata for asset.

**Headers**

| Name          | Value              |
| ------------- | ------------------ |
| Content-Type  | `application/json` |
| Authorization | `Bearer <token>`   |

**Body**

| Name        | Type   | Description |
| ----------- | ------ | ----------- |
| asset\_Id   | string | Asset\_ID   |
| field\_name | string | Field Name  |

**Response**

{% tabs %}
{% tab title="200" %}

```json
{
  "data": {
    "name": "string",
    "alias": "string",
    "description": "string",
    "data_type": "date",
    "unit": "string",
    "is_feature_info": true,
    "is_filter": true
  },
  "status": "success"
}
```

{% endtab %}

{% tab title="422" %}

```json
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}
```

{% endtab %}
{% endtabs %}
