Projects And owner_project

Reference for growthepie project coverage and owner_project identifiers.

owner_project is the canonical project identifier exposed by labels/projects.json. Use owner_project when you need to map project metadata, join project coverage with downstream analysis workflows, or fetch a project detail response from apps/details/{owner_project}.json.

owner_project is the application-level scope in growthepie. Application metrics are mostly based on smart contracts mapped to that project, while chain metrics describe whole-network activity for an origin_key.

Key Facts

  • Canonical source: https://api.growthepie.com/v1/labels/projects.json

  • App-detail discovery source: https://api.growthepie.com/v1/labels/projects_filtered.json

  • Last verified in this docs refresh: March 27, 2026

  • Live project count in projects.json at that time: 6,650

  • Live project count in projects_filtered.json at that time: 757

  • Core fields: owner_project, display_name, description, website, main_category, sub_category

Example Request

curl -s https://api.growthepie.com/v1/labels/projects.json

Example Use

Use labels/projects.json when you need to answer questions such as:

  • Which owner_project values are covered?

  • What human-readable name matches a given owner_project?

  • Which categories and subcategories are assigned to a project?

  • Which project detail JSON path should I call for a given app?

Use labels/projects_filtered.json when you need to answer questions such as:

  • Which owner_project values currently have actual datapoints such as txcount?

  • Which owner_project values can be used with apps/details/{owner_project}.json?

Caveats

  • The payload is a typed table, not a list of JSON objects.

  • Coverage size changes over time, so prefer the live endpoint over hardcoded lists.

  • projects.json includes all projects with metadata.

  • projects_filtered.json is the subset with actual datapoints and is the correct discovery list for app-detail endpoints.

  • Application-level project detail belongs to the Advanced package. Chain-level coverage belongs to the Basic package. More info: growthepie data tiersarrow-up-right

Last updated