Closing down notice of legacy Copilot metrics APIs #191907
Replies: 2 comments
-
|
You're running into this because the legacy Copilot metrics endpoints were fully deprecated, and the old URL now returns 404 (even if some docs or blog posts still reference it). So you're not doing anything wrong it's that endpoint is no longer valid. Right now, GitHub hasn’t provided a direct 1:1 replacement endpoint for all of those metrics in the same format. Instead, Copilot usage data is being moved toward:
About your specific fields: What you should do next:
A lot of people are hitting this exact issue after the deprecation. |
Beta Was this translation helpful? Give feedback.
-
|
The old The replacement is the new Copilot usage metrics API, which uses a different URL pattern: For per-user data (where TOTAL_ACTIVE_USERS and TOTAL_ENGAGED_USERS live): Token-wise, you need One thing to know before you remap your pipeline: the field names changed. The old columns like What are you feeding this data into? Happy to help with the field mapping once you've seen the new schema.l |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
🏷️ Discussion Type
Question
💬 Feature/Topic Area
API
Body
according to this: https://github.blog/changelog/2026-01-29-closing-down-notice-of-legacy-copilot-metrics-apis/
the copilot metrics api endpoints were deprecated on April 2nd, but article still points to the same endpoint:
https://api.github.com/orgs/ORG/copilot/metrics
but this brings 404 error.
{
"message": "Not Found",
"documentation_url": "https://docs.github.com/rest",
"status": "404"
}
which endpoint should I use now to get the following columns?
column_name
DATE
COPILOT_IDE_CHAT
TOTAL_ACTIVE_USERS
COPILOT_DOTCOM_CHAT
TOTAL_ENGAGED_USERS
COPILOT_DOTCOM_PULL_REQUESTS
COPILOT_IDE_CODE_COMPLETIONS
Thanks in advanced!
Beta Was this translation helpful? Give feedback.
All reactions