---
title: The Internal Tag Object
description: This is an object representing an internal tag inside a Storyblok space.
url: https://storyblok.com/docs/api/management/internal-tags/the-internal-tag-object
---

# The Internal Tag Object

This is an object representing an internal tag inside a Storyblok space.

## Properties

-   `name` (string)
    
    Name of the internal tag
    
-   `id` (number)
    
    Numeric ID of the internal tag
    
-   `object_type` (string)
    
    The object type of an internal tag (where does the internal tag belong to). Can be `asset` or `component`
    

Example Object

```json
{
  "internal_tag": {
    "name": "flower",
    "id": 33772,
    "object_type": "asset"
  }
 }
```

## Pagination

-   [Previous: Retrieve Multiple Internal Tags](/docs/api/management/internal-tags/retrieve-multiple-internal-tags)
-   [Next: The Tag MAPI Object](/docs/api/management/internal-tags/the-tag-mapi-object)
