> For the complete documentation index, see [llms.txt](https://docs.growthepie.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.growthepie.com/api-reference/api/labels-projects-json.md).

# Endpoint: labels/projects.json

`labels/projects.json` is the public project coverage endpoint. `labels/projects.json` returns project metadata as a typed table, which makes it useful when you want to map `owner_project` identifiers to human-readable names, descriptions, websites, categories, and other project attributes.

## Request

```
GET https://api.growthepie.com/v1/labels/projects.json
```

## Key Facts

* Auth: not required
* Response type: object with `last_updated_utc` and a typed table
* Table columns are listed in `data.types`
* Table rows are listed in `data.data`

## Example Response

```json
{
  "last_updated_utc": "2026-03-27 05:35:04",
  "data": {
    "types": [
      "owner_project",
      "display_name",
      "description",
      "main_github",
      "twitter",
      "website",
      "logo_path",
      "token_symbol",
      "sub_category",
      "main_category",
      "sub_categories"
    ],
    "data": [
      [
        "adsbaazar",
        "Adsbaazar",
        "Adsbaazar is an India-based vehicle branding and outdoor advertising service provider.",
        null,
        null,
        "https://www.adsbaazar.com/",
        null,
        null,
        "Stablecoin",
        "Token Transfers",
        ["stablecoin"]
      ]
    ]
  }
}
```

## When To Use labels/projects.json

* You need the canonical `owner_project` list
* You need a project display name or description
* You need app or project coverage metadata
* You need the full metadata universe, including projects that do not currently have datapoints

## Caveats

* `labels/projects.json` is a table-oriented payload, not a flat list of objects.
* Consumers should map `data.types` to each row in `data.data` before building objects locally.
* `labels/projects.json` includes all projects with metadata, not just projects with observed datapoints.
* For app-detail discovery, prefer `labels/projects_filtered.json`.

## Related Pages

* [Projects And owner\_project](/entity-coverage-reference/entity-coverage-reference/projects-and-owner-project.md)
* [Endpoint: labels/projects\_filtered.json](/api-reference/api/labels-projects-filtered-json.md)
* [Endpoint: apps/details/{owner\_project}.json](/api-reference/api/app-detail-json.md)
