Find an API

Search public APIs with auth details & Postman guides

← All APIs

Gitlab

gitlab · Developer Tools

Developer Tools No Auth Free & Open developer_tools

The platform for modern developers GitLab unifies issues, code review, CI and CD into a single UI

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET Get a groups list

Get a groups list

https://api.apis.guru/v2/specs/gitlab.com/v3/v3/groups?page=1&sort=asc&search=hello&order_by=name&per_page=10&statistics=true&all_available=true

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/gitlab.com/v3/v3/groups?page=1&sort=asc&search=hello&order_by=name&per_page=10&statistics=true&all_available=true"
import requests
params = {
    "page": "1",
    "sort": "asc",
    "search": "hello",
    "order_by": "name",
    "per_page": "10",
    "statistics": "true",
    "all_available": "true"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/gitlab.com/v3/v3/groups",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/gitlab.com/v3/v3/groups');
url.searchParams.set('page', '1');
url.searchParams.set('sort', 'asc');
url.searchParams.set('search', 'hello');
url.searchParams.set('order_by', 'name');
url.searchParams.set('per_page', '10');
url.searchParams.set('statistics', 'true');
url.searchParams.set('all_available', 'true');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/gitlab.com/v3/v3/groups")
	q := baseURL.Query()
	q.Set("page", "1")
	q.Set("sort", "asc")
	q.Set("search", "hello")
	q.Set("order_by", "name")
	q.Set("per_page", "10")
	q.Set("statistics", "true")
	q.Set("all_available", "true")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/gitlab.com/v3/v3/groups")
uri.query = URI.encode_www_form({
  "page" => "1",
  "sort" => "asc",
  "search" => "hello",
  "order_by" => "name",
  "per_page" => "10",
  "statistics" => "true",
  "all_available" => "true"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/gitlab.com/v3/v3/groups?" . http_build_query([
    "page" => "1",
    "sort" => "asc",
    "search" => "hello",
    "order_by" => "name",
    "per_page" => "10",
    "statistics" => "true",
    "all_available" => "true"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Get currently authenticated user's issues

Get currently authenticated user's issues

https://api.apis.guru/v2/specs/gitlab.com/v3/v3/issues?page=1&sort=desc&state=all&labels=example&order_by=created_at&per_page=10&milestone=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/gitlab.com/v3/v3/issues?page=1&sort=desc&state=all&labels=example&order_by=created_at&per_page=10&milestone=example"
import requests
params = {
    "page": "1",
    "sort": "desc",
    "state": "all",
    "labels": "example",
    "order_by": "created_at",
    "per_page": "10",
    "milestone": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/gitlab.com/v3/v3/issues",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/gitlab.com/v3/v3/issues');
url.searchParams.set('page', '1');
url.searchParams.set('sort', 'desc');
url.searchParams.set('state', 'all');
url.searchParams.set('labels', 'example');
url.searchParams.set('order_by', 'created_at');
url.searchParams.set('per_page', '10');
url.searchParams.set('milestone', 'example');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/gitlab.com/v3/v3/issues")
	q := baseURL.Query()
	q.Set("page", "1")
	q.Set("sort", "desc")
	q.Set("state", "all")
	q.Set("labels", "example")
	q.Set("order_by", "created_at")
	q.Set("per_page", "10")
	q.Set("milestone", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/gitlab.com/v3/v3/issues")
uri.query = URI.encode_www_form({
  "page" => "1",
  "sort" => "desc",
  "state" => "all",
  "labels" => "example",
  "order_by" => "created_at",
  "per_page" => "10",
  "milestone" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/gitlab.com/v3/v3/issues?" . http_build_query([
    "page" => "1",
    "sort" => "desc",
    "state" => "all",
    "labels" => "example",
    "order_by" => "created_at",
    "per_page" => "10",
    "milestone" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Get the list of the available license template

This feature was introduced in GitLab 8.7. This endpoint is deprecated and will be removed in GitLab 9.0.

https://api.apis.guru/v2/specs/gitlab.com/v3/v3/licenses?popular=true

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/gitlab.com/v3/v3/licenses?popular=true"
import requests
params = {
    "popular": "true"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/gitlab.com/v3/v3/licenses",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/gitlab.com/v3/v3/licenses');
url.searchParams.set('popular', 'true');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/gitlab.com/v3/v3/licenses")
	q := baseURL.Query()
	q.Set("popular", "true")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/gitlab.com/v3/v3/licenses")
uri.query = URI.encode_www_form({
  "popular" => "true"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/gitlab.com/v3/v3/licenses?" . http_build_query([
    "popular" => "true"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));

Postman Setup Guide

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with Gitlab?

Gitlab is a Developer Tools API. Developers commonly use developer tools APIs for:

  • automating code review and quality checks
  • integrating CI/CD pipelines and build systems
  • managing feature flags and A/B tests
  • monitoring errors and application performance
  • generating and validating test data

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Gitlab is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide

Open documentation ↗