> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mobula.io/llms.txt
> Use this file to discover all available pages before exploring further.

# ContractLabel

> A security/classification label attributed to a token contract (e.g. Scam, HoneyPot).

### TypeScript shape

```ts theme={null}
interface ContractLabel {
  createdAt: number;
  subType: ContractLabelSubType;
  type: ContractLabelType;
}
```

<ResponseField name="createdAt" type="Int!">Unix timestamp (seconds) when the label was created.</ResponseField>
<ResponseField name="subType" type="ContractLabelSubType!">The label sub-type. See [ContractLabelSubType](/api-reference/graphql/types/ContractLabelSubType).</ResponseField>
<ResponseField name="type" type="ContractLabelType!">The label type. See [ContractLabelType](/api-reference/graphql/types/ContractLabelType).</ResponseField>
