List all projects starred by a user
Lists all visible projects starred by a specified user. Unauthenticated requests return only public projects.
Authorizations
Section titled “ Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “ Path Parameters ”The ID or username of the user
Query Parameters
Section titled “ Query Parameters ”Return projects ordered by field. storage_size, repository_size, wiki_size, packages_size are only available to admins. Similarity is available when searching and is limited to projects the user has access to.
Return projects sorted in ascending and descending order
Limit by archived status
Limit by visibility
Return list of projects matching the search criteria
Include ancestor namespaces when matching search criteria
Limit by owned by authenticated user
Limit by starred status
Limit by imported by authenticated user
Limit by projects that the current user is a member of
Limit by enabled issues feature
Limit by enabled merge requests feature
Limit to repositories which use the given programming language
Limit by minimum access level of authenticated user
Limit results to projects with IDs greater than the specified ID
Limit results to projects with IDs less than the specified ID
Limit results to projects with last_activity after specified time. Format: ISO 8601 YYYY-MM-DDTHH:MM:SSZ
Limit results to projects with last_activity before specified time. Format: ISO 8601 YYYY-MM-DDTHH:MM:SSZ
Which storage shard the repository is on. Available only to admins
Comma-separated list of topics. Limit results to projects having all topics
Limit results to projects with the assigned topic given by the topic ID
Return projects updated before the specified datetime. Format: ISO 8601 YYYY-MM-DDTHH:MM:SSZ
Return projects updated after the specified datetime. Format: ISO 8601 YYYY-MM-DDTHH:MM:SSZ
Include projects in pending delete state. Can only be set by admins
Date when the project was marked for deletion
Limit by projects that are not archived and not marked for deletion
Limit by projects where wiki checksum is failed
Limit by projects where repository checksum is failed
Include hidden projects. Can only be set by admins
Current page number
Example
1Number of items per page
Example
20Return only the ID, URL, name, and path of each project
Include project statistics
Responses
Section titled “ Responses ”OK
object
object
object
object
Example
{ "id": 1, "description": "desc", "name": "project1", "name_with_namespace": "John Doe / project1", "path": "project1", "path_with_namespace": "namespace1/project1", "created_at": "2020-05-07T04:27:17.016Z", "default_branch": "main", "tag_list": [ "tag" ], "topics": [ "topic" ], "ssh_url_to_repo": "git@gitlab.example.com:gitlab/gitlab.git", "http_url_to_repo": "https://gitlab.example.com/gitlab/gitlab.git", "web_url": "https://gitlab.example.com/gitlab/gitlab", "readme_url": "https://gitlab.example.com/gitlab/gitlab/blob/master/README.md", "forks_count": 1, "license_url": "https://gitlab.example.com/gitlab/gitlab/blob/master/LICENCE", "license": { "key": "gpl-3.0", "name": "GNU General Public License v3.0", "nickname": "GNU GPLv3", "html_url": "http://choosealicense.com/licenses/gpl-3.0" }, "avatar_url": "http://example.com/uploads/project/avatar/3/uploads/avatar.png", "star_count": 1, "last_activity_at": "2013-09-30T13:46:02Z", "visibility": "public", "namespace": { "id": 2, "name": "project", "path": "my_project", "kind": "project", "full_path": "group/my_project", "parent_id": 1, "avatar_url": "https://example.com/avatar/12345", "web_url": "https://example.com/group/my_project" }, "custom_attributes": { "key": "foo", "value": "bar" }, "repository_storage": "default"}Bad Request
404 User Not Found