Skip to main content
Question

https://api.revenuecat.com/v2/projects/${project.id}/charts/actives?realtime=false&start_date=${dateStr}&end_date=${dateStr}

  • March 19, 2026
  • 1 reply
  • 30 views

Forum|alt.badge.img

https://api.revenuecat.com/v2/projects/${project.id}/charts/actives?realtime=false&start_date=${dateStr}&end_date=${dateStr}

I want to get the result for a single specific app from the link above.

How do I do that?

1 reply

wes_clark
RevenueCat Staff
Forum|alt.badge.img+6
  • RevenueCat Staff
  • March 23, 2026

Hi! You will need to add the `filters` query parameter in order to filter by a specific app. Your endpoint will look something like this: https://api.revenuecat.com/v2/projects/${project.id}/charts/actives?realtime=false&start_date=${dateStr}&end_date=${dateStr}&filters=[{"name":"app_id","values":["appabc123"]}] . You will need to make sure to use the full app ID with the ‘app' prefix as I have done in the example endpoint. You can find the other options for the filters parameter by using the endpoint mentioned in this section.