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

# Organization

> Codex Grid-compat — metadata about the issuer of one or more Assets. Populated for tokens where Grid has organization data (established, verified projects).

### TypeScript shape

```ts theme={null}
interface Organization {
  name: string;
  foundingDate: string | null;
  descriptionShort: string | null;
  descriptionLong: string | null;
  tagLine: string | null;
  type: string | null;
  sector: string | null;
  urls: OrganizationUrl[];
  socials: OrganizationSocial[];
  logo: string | null;
  icon: string | null;
  header: string | null;
  rootId: string;
  assets: Asset[];
}
```

<ResponseField name="name" type="String!">
  Organization name.
</ResponseField>

<ResponseField name="foundingDate" type="String">
  Date the organization was founded.
</ResponseField>

<ResponseField name="descriptionShort" type="String">
  Short organization description.
</ResponseField>

<ResponseField name="descriptionLong" type="String">
  Long organization description.
</ResponseField>

<ResponseField name="tagLine" type="String">
  Organization tagline.
</ResponseField>

<ResponseField name="type" type="String">
  Organization type classification.
</ResponseField>

<ResponseField name="sector" type="String">
  Sector the organization operates in.
</ResponseField>

<ResponseField name="urls" type="[OrganizationUrl!]!">
  Organization-related URLs. See [OrganizationUrl](/api-reference/graphql/types/OrganizationUrl).

  <Expandable title="OrganizationUrl">
    <ResponseField name="url" type="String!">The URL.</ResponseField>
    <ResponseField name="type" type="String">URL type (e.g. website, docs, blog).</ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="socials" type="[OrganizationSocial!]!">
  Organization social profiles. See [OrganizationSocial](/api-reference/graphql/types/OrganizationSocial).

  <Expandable title="OrganizationSocial">
    <ResponseField name="url" type="String!">The social profile URL.</ResponseField>
    <ResponseField name="type" type="String">Social type (e.g. twitter, telegram, discord).</ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="logo" type="String">
  Logo image URL.
</ResponseField>

<ResponseField name="icon" type="String">
  Icon image URL.
</ResponseField>

<ResponseField name="header" type="String">
  Header image URL.
</ResponseField>

<ResponseField name="rootId" type="String!">
  Root identifier shared across the organization's assets.
</ResponseField>

<ResponseField name="assets" type="[Asset!]!">
  Assets issued by this organization. See [Asset](/api-reference/graphql/types/Asset).
</ResponseField>
