Get user's namespaces Run in API Explorer
Get metadata associated with the namespaces the user has access to, including extra repos associated with the namespaces.
GET
/namespaces
curl \
--request GET 'https://hub.docker.com/api/publisher/analytics/v1/namespaces' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
{
"namespace": "string",
"extraRepos": [
"string"
],
"datasets": [
{
"name": "pulls",
"views": [
"raw"
],
"timespans": [
"months"
]
}
]
}
]