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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.growthepie.com/api-reference/api/labels-projects-json.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
