PageRenderTime 49ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/doc/api/README.md

http://github.com/gitlabhq/gitlabhq
Markdown | 650 lines | 466 code | 184 blank | 0 comment | 0 complexity | fbdd5fa52dfb8326a41058183c440e98 MD5 | raw file
Possible License(s): CC-BY-SA-4.0, Apache-2.0, CC-BY-3.0, CC0-1.0, JSON
  1. # API Docs
  2. Automate GitLab via a simple and powerful API.
  3. The main GitLab API is a [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API. Therefore, documentation in this section assumes knowledge of REST concepts.
  4. ## Available API resources
  5. For a list of the available resources and their endpoints, see
  6. [API resources](api_resources.md).
  7. ## SCIM **(SILVER ONLY)**
  8. [GitLab.com Silver and above](https://about.gitlab.com/pricing/) provides an [SCIM API](scim.md) that implements [the RFC7644 protocol](https://tools.ietf.org/html/rfc7644) and provides
  9. the `/Users` endpoint. The base URL is: `/api/scim/v2/groups/:group_path/Users/`.
  10. ## Road to GraphQL
  11. [GraphQL](graphql/index.md) is available in GitLab, which will
  12. allow deprecation of controller-specific endpoints.
  13. GraphQL has a number of benefits:
  14. 1. We avoid having to maintain two different APIs.
  15. 1. Callers of the API can request only what they need.
  16. 1. It is versioned by default.
  17. It will co-exist with the current v4 REST API. If we have a v5 API, this should
  18. be a compatibility layer on top of GraphQL.
  19. Although there were some patenting and licensing concerns with GraphQL, these
  20. have been resolved to our satisfaction by the relicensing of the reference
  21. implementations under MIT, and the use of the OWF license for the GraphQL
  22. specification.
  23. ## Compatibility guidelines
  24. The HTTP API is versioned using a single number, the current one being 4. This
  25. number symbolizes the same as the major version number as described by
  26. [SemVer](https://semver.org/). This mean that backward incompatible changes
  27. will require this version number to change. However, the minor version is
  28. not explicit. This allows for a stable API endpoint, but also means new
  29. features can be added to the API in the same version number.
  30. New features and bug fixes are released in tandem with a new GitLab, and apart
  31. from incidental patch and security releases, are released on the 22nd of each
  32. month. Backward incompatible changes (e.g. endpoints removal, parameters
  33. removal etc.), as well as removal of entire API versions are done in tandem
  34. with a major point release of GitLab itself. All deprecations and changes
  35. between two versions should be listed in the documentation. For the changes
  36. between v3 and v4; please read the [v3 to v4 documentation](v3_to_v4.md)
  37. ### Current status
  38. Currently only API version v4 is available. Version v3 was removed in
  39. [GitLab 11.0](https://gitlab.com/gitlab-org/gitlab-foss/issues/36819).
  40. ## Basic usage
  41. API requests should be prefixed with `api` and the API version. The API version
  42. is defined in [`lib/api.rb`](https://gitlab.com/gitlab-org/gitlab-foss/tree/master/lib/api/api.rb). For example, the root of the v4 API
  43. is at `/api/v4`.
  44. Example of a valid API request using cURL:
  45. ```shell
  46. curl "https://gitlab.example.com/api/v4/projects"
  47. ```
  48. The API uses JSON to serialize data. You don't need to specify `.json` at the
  49. end of an API URL.
  50. ## Authentication
  51. Most API requests require authentication, or will only return public data when
  52. authentication is not provided. For
  53. those cases where it is not required, this will be mentioned in the documentation
  54. for each individual endpoint. For example, the [`/projects/:id` endpoint](projects.md#get-single-project).
  55. There are several ways to authenticate with the GitLab API:
  56. 1. [OAuth2 tokens](#oauth2-tokens)
  57. 1. [Personal access tokens](../user/profile/personal_access_tokens.md)
  58. 1. [Project access tokens](../user/project/settings/project_access_tokens.md) **(CORE ONLY)**
  59. 1. [Session cookie](#session-cookie)
  60. 1. [GitLab CI/CD job token](#gitlab-ci-job-token) **(Specific endpoints only)**
  61. For admins who want to authenticate with the API as a specific user, or who want to build applications or scripts that do so, two options are available:
  62. 1. [Impersonation tokens](#impersonation-tokens)
  63. 1. [Sudo](#sudo)
  64. If authentication information is invalid or omitted, an error message will be
  65. returned with status code `401`:
  66. ```json
  67. {
  68. "message": "401 Unauthorized"
  69. }
  70. ```
  71. ### OAuth2 tokens
  72. You can use an [OAuth2 token](oauth2.md) to authenticate with the API by passing it in either the
  73. `access_token` parameter or the `Authorization` header.
  74. Example of using the OAuth2 token in a parameter:
  75. ```shell
  76. curl https://gitlab.example.com/api/v4/projects?access_token=OAUTH-TOKEN
  77. ```
  78. Example of using the OAuth2 token in a header:
  79. ```shell
  80. curl --header "Authorization: Bearer OAUTH-TOKEN" https://gitlab.example.com/api/v4/projects
  81. ```
  82. Read more about [GitLab as an OAuth2 provider](oauth2.md).
  83. ### Personal/project access tokens
  84. Access tokens can be used to authenticate with the API by passing it in either the `private_token` parameter
  85. or the `Private-Token` header.
  86. Example of using the personal/project access token in a parameter:
  87. ```shell
  88. curl https://gitlab.example.com/api/v4/projects?private_token=<your_access_token>
  89. ```
  90. Example of using the personal/project access token in a header:
  91. ```shell
  92. curl --header "Private-Token: <your_access_token>" https://gitlab.example.com/api/v4/projects
  93. ```
  94. You can also use personal/project access tokens with OAuth-compliant headers:
  95. ```shell
  96. curl --header "Authorization: Bearer <your_access_token>" https://gitlab.example.com/api/v4/projects
  97. ```
  98. ### Session cookie
  99. When signing in to the main GitLab application, a `_gitlab_session` cookie is
  100. set. The API will use this cookie for authentication if it is present, but using
  101. the API to generate a new session cookie is currently not supported.
  102. The primary user of this authentication method is the web frontend of GitLab itself,
  103. which can use the API as the authenticated user to get a list of their projects,
  104. for example, without needing to explicitly pass an access token.
  105. ### GitLab CI job token
  106. With a few API endpoints you can use a [GitLab CI/CD job token](../user/project/new_ci_build_permissions_model.md#job-token)
  107. to authenticate with the API:
  108. - [Get job artifacts](jobs.md#get-job-artifacts)
  109. - [Pipeline triggers](pipeline_triggers.md)
  110. - [Release creation](releases/index.md#create-a-release)
  111. ### Impersonation tokens
  112. > [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/9099) in GitLab 9.0. Needs admin permissions.
  113. Impersonation tokens are a type of [personal access token](../user/profile/personal_access_tokens.md)
  114. that can only be created by an admin for a specific user. They are a great fit
  115. if you want to build applications or scripts that authenticate with the API as a specific user.
  116. They are an alternative to directly using the user's password or one of their
  117. personal access tokens, and to using the [Sudo](#sudo) feature, since the user's (or admin's, in the case of Sudo)
  118. password/token may not be known or may change over time.
  119. For more information, refer to the
  120. [users API](users.md#create-an-impersonation-token) docs.
  121. Impersonation tokens are used exactly like regular personal access tokens, and can be passed in either the
  122. `private_token` parameter or the `Private-Token` header.
  123. #### Disable impersonation
  124. > [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/issues/40385) in GitLab 11.6.
  125. By default, impersonation is enabled. To disable impersonation:
  126. **For Omnibus installations**
  127. 1. Edit `/etc/gitlab/gitlab.rb`:
  128. ```ruby
  129. gitlab_rails['impersonation_enabled'] = false
  130. ```
  131. 1. Save the file and [reconfigure](../administration/restart_gitlab.md#omnibus-gitlab-reconfigure)
  132. GitLab for the changes to take effect.
  133. To re-enable impersonation, remove this configuration and reconfigure GitLab.
  134. **For installations from source**
  135. 1. Edit `config/gitlab.yml`:
  136. ```yaml
  137. gitlab:
  138. impersonation_enabled: false
  139. ```
  140. 1. Save the file and [restart](../administration/restart_gitlab.md#installations-from-source)
  141. GitLab for the changes to take effect.
  142. To re-enable impersonation, remove this configuration and restart GitLab.
  143. ### Sudo
  144. NOTE: **Note:**
  145. Only available to [administrators](../user/permissions.md).
  146. All API requests support performing an API call as if you were another user,
  147. provided you are authenticated as an administrator with an OAuth or Personal Access Token that has the `sudo` scope.
  148. You need to pass the `sudo` parameter either via query string or a header with an ID/username of
  149. the user you want to perform the operation as. If passed as a header, the
  150. header name must be `Sudo`.
  151. NOTE: **Note:**
  152. Usernames are case insensitive.
  153. If a non administrative access token is provided, an error message will
  154. be returned with status code `403`:
  155. ```json
  156. {
  157. "message": "403 Forbidden - Must be admin to use sudo"
  158. }
  159. ```
  160. If an access token without the `sudo` scope is provided, an error message will
  161. be returned with status code `403`:
  162. ```json
  163. {
  164. "error": "insufficient_scope",
  165. "error_description": "The request requires higher privileges than provided by the access token.",
  166. "scope": "sudo"
  167. }
  168. ```
  169. If the sudo user ID or username cannot be found, an error message will be
  170. returned with status code `404`:
  171. ```json
  172. {
  173. "message": "404 User with ID or username '123' Not Found"
  174. }
  175. ```
  176. Example of a valid API call and a request using cURL with sudo request,
  177. providing a username:
  178. ```plaintext
  179. GET /projects?private_token=<your_access_token>&sudo=username
  180. ```
  181. ```shell
  182. curl --header "Private-Token: <your_access_token>" --header "Sudo: username" "https://gitlab.example.com/api/v4/projects"
  183. ```
  184. Example of a valid API call and a request using cURL with sudo request,
  185. providing an ID:
  186. ```plaintext
  187. GET /projects?private_token=<your_access_token>&sudo=23
  188. ```
  189. ```shell
  190. curl --header "Private-Token: <your_access_token>" --header "Sudo: 23" "https://gitlab.example.com/api/v4/projects"
  191. ```
  192. ## Status codes
  193. The API is designed to return different status codes according to context and
  194. action. This way, if a request results in an error, the caller is able to get
  195. insight into what went wrong.
  196. The following table gives an overview of how the API functions generally behave.
  197. | Request type | Description |
  198. | ------------ | ----------- |
  199. | `GET` | Access one or more resources and return the result as JSON. |
  200. | `POST` | Return `201 Created` if the resource is successfully created and return the newly created resource as JSON. |
  201. | `GET` / `PUT` | Return `200 OK` if the resource is accessed or modified successfully. The (modified) result is returned as JSON. |
  202. | `DELETE` | Returns `204 No Content` if the resource was deleted successfully. |
  203. The following table shows the possible return codes for API requests.
  204. | Return values | Description |
  205. | ------------- | ----------- |
  206. | `200 OK` | The `GET`, `PUT` or `DELETE` request was successful, the resource(s) itself is returned as JSON. |
  207. | `204 No Content` | The server has successfully fulfilled the request and that there is no additional content to send in the response payload body. |
  208. | `201 Created` | The `POST` request was successful and the resource is returned as JSON. |
  209. | `304 Not Modified` | Indicates that the resource has not been modified since the last request. |
  210. | `400 Bad Request` | A required attribute of the API request is missing, e.g., the title of an issue is not given. |
  211. | `401 Unauthorized` | The user is not authenticated, a valid [user token](#authentication) is necessary. |
  212. | `403 Forbidden` | The request is not allowed, e.g., the user is not allowed to delete a project. |
  213. | `404 Not Found` | A resource could not be accessed, e.g., an ID for a resource could not be found. |
  214. | `405 Method Not Allowed` | The request is not supported. |
  215. | `409 Conflict` | A conflicting resource already exists, e.g., creating a project with a name that already exists. |
  216. | `412` | Indicates the request was denied. May happen if the `If-Unmodified-Since` header is provided when trying to delete a resource, which was modified in between. |
  217. | `422 Unprocessable` | The entity could not be processed. |
  218. | `500 Server Error` | While handling the request something went wrong server-side. |
  219. ## Pagination
  220. We support two kinds of pagination methods:
  221. - Offset-based pagination. This is the default method and available on all endpoints.
  222. - Keyset-based pagination. Added to selected endpoints but being
  223. [progressively rolled out](https://gitlab.com/groups/gitlab-org/-/epics/2039).
  224. For large collections, we recommend keyset pagination (when available) over offset
  225. pagination for performance reasons.
  226. ### Offset-based pagination
  227. Sometimes the returned result will span across many pages. When listing
  228. resources you can pass the following parameters:
  229. | Parameter | Description |
  230. | --------- | ----------- |
  231. | `page` | Page number (default: `1`) |
  232. | `per_page`| Number of items to list per page (default: `20`, max: `100`) |
  233. In the example below, we list 50 [namespaces](namespaces.md) per page.
  234. ```shell
  235. curl --request PUT --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/namespaces?per_page=50"
  236. ```
  237. #### Pagination Link header
  238. [Link headers](https://www.w3.org/wiki/LinkHeader) are sent back with each
  239. response. They have `rel` set to prev/next/first/last and contain the relevant
  240. URL. Please use these links instead of generating your own URLs.
  241. In the cURL example below, we limit the output to 3 items per page (`per_page=3`)
  242. and we request the second page (`page=2`) of [comments](notes.md) of the issue
  243. with ID `8` which belongs to the project with ID `8`:
  244. ```shell
  245. curl --head --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/8/issues/8/notes?per_page=3&page=2
  246. ```
  247. The response will then be:
  248. ```http
  249. HTTP/1.1 200 OK
  250. Cache-Control: no-cache
  251. Content-Length: 1103
  252. Content-Type: application/json
  253. Date: Mon, 18 Jan 2016 09:43:18 GMT
  254. Link: <https://gitlab.example.com/api/v4/projects/8/issues/8/notes?page=1&per_page=3>; rel="prev", <https://gitlab.example.com/api/v4/projects/8/issues/8/notes?page=3&per_page=3>; rel="next", <https://gitlab.example.com/api/v4/projects/8/issues/8/notes?page=1&per_page=3>; rel="first", <https://gitlab.example.com/api/v4/projects/8/issues/8/notes?page=3&per_page=3>; rel="last"
  255. Status: 200 OK
  256. Vary: Origin
  257. X-Next-Page: 3
  258. X-Page: 2
  259. X-Per-Page: 3
  260. X-Prev-Page: 1
  261. X-Request-Id: 732ad4ee-9870-4866-a199-a9db0cde3c86
  262. X-Runtime: 0.108688
  263. X-Total: 8
  264. X-Total-Pages: 3
  265. ```
  266. #### Other pagination headers
  267. Additional pagination headers are also sent back.
  268. | Header | Description |
  269. | ------ | ----------- |
  270. | `X-Total` | The total number of items |
  271. | `X-Total-Pages` | The total number of pages |
  272. | `X-Per-Page` | The number of items per page |
  273. | `X-Page` | The index of the current page (starting at 1) |
  274. | `X-Next-Page` | The index of the next page |
  275. | `X-Prev-Page` | The index of the previous page |
  276. CAUTION: **Caution:**
  277. For performance reasons since
  278. [GitLab 11.8](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/23931)
  279. and **behind the `api_kaminari_count_with_limit`
  280. [feature flag](../development/feature_flags/index.md)**, if the number of resources is
  281. more than 10,000, the `X-Total` and `X-Total-Pages` headers as well as the
  282. `rel="last"` `Link` are not present in the response headers.
  283. ### Keyset-based pagination
  284. Keyset-pagination allows for more efficient retrieval of pages and - in contrast to offset-based pagination - runtime
  285. is independent of the size of the collection.
  286. This method is controlled by the following parameters:
  287. | Parameter | Description |
  288. | ------------ | -------------------------------------- |
  289. | `pagination` | `keyset` (to enable keyset pagination) |
  290. | `per_page` | Number of items to list per page (default: `20`, max: `100`) |
  291. In the example below, we list 50 [projects](projects.md) per page, ordered by `id` ascending.
  292. ```shell
  293. curl --request GET --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects?pagination=keyset&per_page=50&order_by=id&sort=asc"
  294. ```
  295. The response header includes a link to the next page. For example:
  296. ```http
  297. HTTP/1.1 200 OK
  298. ...
  299. Links: <https://gitlab.example.com/api/v4/projects?pagination=keyset&per_page=50&order_by=id&sort=asc&id_after=42>; rel="next"
  300. Status: 200 OK
  301. ...
  302. ```
  303. The link to the next page contains an additional filter `id_after=42` which excludes records we have retrieved already.
  304. Note the type of filter depends on the `order_by` option used and we may have more than one additional filter.
  305. When the end of the collection has been reached and there are no additional records to retrieve, the `Links` header is absent and the resulting array is empty.
  306. We recommend using only the given link to retrieve the next page instead of building your own URL. Apart from the headers shown,
  307. we don't expose additional pagination headers.
  308. Keyset-based pagination is only supported for selected resources and ordering options:
  309. | Resource | Order |
  310. | ------------------------- | -------------------------- |
  311. | [Projects](projects.md) | `order_by=id` only |
  312. ## Path parameters
  313. If an endpoint has path parameters, the documentation shows them with a preceding colon.
  314. For example:
  315. ```plaintext
  316. DELETE /projects/:id/share/:group_id
  317. ```
  318. The `:id` path parameter needs to be replaced with the project ID, and the `:group_id` needs to be replaced with the ID of the group. The colons `:` should not be included.
  319. The resulting cURL call for a project with ID `5` and a group ID of `17` is then:
  320. ```shell
  321. curl --request DELETE --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/5/share/17
  322. ```
  323. NOTE: **Note:**
  324. Path parameters that are required to be URL-encoded must be followed. If not,
  325. it will not match an API endpoint and respond with a 404. If there's something
  326. in front of the API (for example, Apache), ensure that it won't decode the URL-encoded
  327. path parameters.
  328. ## Namespaced path encoding
  329. If using namespaced API calls, make sure that the `NAMESPACE/PROJECT_PATH` is
  330. URL-encoded.
  331. For example, `/` is represented by `%2F`:
  332. ```plaintext
  333. GET /api/v4/projects/diaspora%2Fdiaspora
  334. ```
  335. NOTE: **Note:**
  336. A project's **path** is not necessarily the same as its **name**. A
  337. project's path can be found in the project's URL or in the project's settings
  338. under **General > Advanced > Change path**.
  339. ## File path, branches, and tags name encoding
  340. If a file path, branch or tag contains a `/`, make sure it is URL-encoded.
  341. For example, `/` is represented by `%2F`:
  342. ```plaintext
  343. GET /api/v4/projects/1/repository/files/src%2FREADME.md?ref=master
  344. GET /api/v4/projects/1/branches/my%2Fbranch/commits
  345. GET /api/v4/projects/1/repository/tags/my%2Ftag
  346. ```
  347. ## Encoding API parameters of `array` and `hash` types
  348. We can call the API with `array` and `hash` types parameters as shown below:
  349. ### `array`
  350. `import_sources` is a parameter of type `array`:
  351. ```shell
  352. curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" \
  353. -d "import_sources[]=github" \
  354. -d "import_sources[]=bitbucket" \
  355. https://gitlab.example.com/api/v4/some_endpoint
  356. ```
  357. ### `hash`
  358. `override_params` is a parameter of type `hash`:
  359. ```shell
  360. curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" \
  361. --form "namespace=email" \
  362. --form "path=impapi" \
  363. --form "file=@/path/to/somefile.txt"
  364. --form "override_params[visibility]=private" \
  365. --form "override_params[some_other_param]=some_value" \
  366. https://gitlab.example.com/api/v4/projects/import
  367. ```
  368. ### Array of hashes
  369. `variables` is a parameter of type `array` containing hash key/value pairs `[{ 'key' => 'UPLOAD_TO_S3', 'value' => 'true' }]`:
  370. ```shell
  371. curl --globoff --request POST --header "PRIVATE-TOKEN: ********************" \
  372. "https://gitlab.example.com/api/v4/projects/169/pipeline?ref=master&variables[][key]=VAR1&variables[][value]=hello&variables[][key]=VAR2&variables[][value]=world"
  373. curl --request POST --header "PRIVATE-TOKEN: ********************" \
  374. --header "Content-Type: application/json" \
  375. --data '{ "ref": "master", "variables": [ {"key": "VAR1", "value": "hello"}, {"key": "VAR2", "value": "world"} ] }' \
  376. "https://gitlab.example.com/api/v4/projects/169/pipeline"
  377. ```
  378. ## `id` vs `iid`
  379. Some resources have two similarly-named fields. For example, [issues](issues.md), [merge requests](merge_requests.md), and [project milestones](merge_requests.md). The fields are:
  380. - `id`: ID that is unique across all projects.
  381. - `iid`: additional, internal ID that is unique in the scope of a single project.
  382. NOTE: **Note:**
  383. The `iid` is displayed in the web UI.
  384. If a resource has the `iid` field and the `id` field, the `iid` field is usually used instead of `id` to fetch the resource.
  385. For example, suppose a project with `id: 42` has an issue with `id: 46` and `iid: 5`. In this case:
  386. - A valid API call to retrieve the issue is `GET /projects/42/issues/5`
  387. - An invalid API call to retrieve the issue is `GET /projects/42/issues/46`.
  388. NOTE: **Note:**
  389. Not all resources with the `iid` field are fetched by `iid`. For guidance on which field to use, see the documentation for the specific resource.
  390. ## Data validation and error reporting
  391. When working with the API you may encounter validation errors, in which case
  392. the API will answer with an HTTP `400` status.
  393. Such errors appear in two cases:
  394. - A required attribute of the API request is missing, e.g., the title of an
  395. issue is not given
  396. - An attribute did not pass the validation, e.g., user bio is too long
  397. When an attribute is missing, you will get something like:
  398. ```http
  399. HTTP/1.1 400 Bad Request
  400. Content-Type: application/json
  401. {
  402. "message":"400 (Bad request) \"title\" not given"
  403. }
  404. ```
  405. When a validation error occurs, error messages will be different. They will
  406. hold all details of validation errors:
  407. ```http
  408. HTTP/1.1 400 Bad Request
  409. Content-Type: application/json
  410. {
  411. "message": {
  412. "bio": [
  413. "is too long (maximum is 255 characters)"
  414. ]
  415. }
  416. }
  417. ```
  418. This makes error messages more machine-readable. The format can be described as
  419. follows:
  420. ```json
  421. {
  422. "message": {
  423. "<property-name>": [
  424. "<error-message>",
  425. "<error-message>",
  426. ...
  427. ],
  428. "<embed-entity>": {
  429. "<property-name>": [
  430. "<error-message>",
  431. "<error-message>",
  432. ...
  433. ],
  434. }
  435. }
  436. }
  437. ```
  438. ## Unknown route
  439. When you try to access an API URL that does not exist you will receive 404 Not Found.
  440. ```http
  441. HTTP/1.1 404 Not Found
  442. Content-Type: application/json
  443. {
  444. "error": "404 Not Found"
  445. }
  446. ```
  447. ## Encoding `+` in ISO 8601 dates
  448. If you need to include a `+` in a query parameter, you may need to use `%2B` instead due
  449. to a [W3 recommendation](http://www.w3.org/Addressing/URL/4_URI_Recommentations.html) that
  450. causes a `+` to be interpreted as a space. For example, in an ISO 8601 date, you may want to pass
  451. a time in Mountain Standard Time, such as:
  452. ```plaintext
  453. 2017-10-17T23:11:13.000+05:30
  454. ```
  455. The correct encoding for the query parameter would be:
  456. ```plaintext
  457. 2017-10-17T23:11:13.000%2B05:30
  458. ```
  459. ## Clients
  460. There are many unofficial GitLab API Clients for most of the popular
  461. programming languages. Visit the [GitLab website](https://about.gitlab.com/partners/#api-clients) for a complete list.
  462. ## Rate limits
  463. For administrator documentation on rate limit settings, see
  464. [Rate limits](../security/rate_limits.md). To find the settings that are
  465. specifically used by GitLab.com, see
  466. [GitLab.com-specific rate limits](../user/gitlab_com/index.md#gitlabcom-specific-rate-limits).