Artifcatory rest API to list all the Repositories

Viewed 2811

I am looking for a artifactory REST API that would list down all the repo-keys. If it could provide some more information then that would be really nice.

I looked up the Artifactory REST API documentation, but couldn't find one.

Did I miss anything ? Any other alternative ?

1 Answers

I expect you're just looking for GET /api/repositories.

This gives you the repo key, type, package type, description, and the URL of each repository, and you may filter by type or package type.

Related