> ## 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.

# MobulaTokenSecurity

> Mobula security score and raw security flags.

### TypeScript shape

```ts theme={null}
interface MobulaTokenSecurity {
  score: number | null;
  scoreUpdatedAt: number | null;
  flags: unknown | null;
}
```

<ResponseField name="score" type="Float">
  Mobula security score when available.
</ResponseField>

<ResponseField name="scoreUpdatedAt" type="Int">
  Unix timestamp for the latest security score update.
</ResponseField>

<ResponseField name="flags" type="JSON">
  Raw security flags from Mobula's security engine. The exact keys vary by chain and token standard.
</ResponseField>
