> For the complete documentation index, see [llms.txt](https://supernova-developers.gitbook.io/supernova-dsm/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://supernova-developers.gitbook.io/supernova-dsm/design-system-data/tokens/texts.md).

# Text

Text tokens define one single interface label, such as `"Sign In"` or `"Register Here"` .

### Example Token Payload

This is what the text payload looks like:

```javascript
{
  "id": string
  "name": string
  "description": string
  "tokenType": "Text"
  "origin": ItemOrigin | null
  "value": {
    "text": string
    "referencedToken": Text | null
  }
}
```

### Associated functions

You can use the following functions to retrieve text tokens from your design system:

* [@ds.allTokens](/supernova-dsm/design-system-data/function-list.md#ds-alltokens)
* [@ds.tokensByType](/supernova-dsm/design-system-data/function-list.md#ds-tokensbytype) (with `"Text"`) attribute
* [@ds.tokensByGroupId](/supernova-dsm/design-system-data/function-list.md#ds-tokensbygroupid)
