JIRA 7.6.1
jira · Developer Tools
JIRA 7.6.1 API
Authentication
Sample Requests
Returns an application property.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/jira.local/1.0.0/api/2/application-properties?key=YOUR_API_KEY&keyFilter=example&permissionLevel=example"
import requests
params = {
"key": "YOUR_API_KEY",
"keyFilter": "example",
"permissionLevel": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/jira.local/1.0.0/api/2/application-properties",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/jira.local/1.0.0/api/2/application-properties');
url.searchParams.set('key', 'YOUR_API_KEY');
url.searchParams.set('keyFilter', 'example');
url.searchParams.set('permissionLevel', '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/jira.local/1.0.0/api/2/application-properties")
q := baseURL.Query()
q.Set("key", "YOUR_API_KEY")
q.Set("keyFilter", "example")
q.Set("permissionLevel", "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/jira.local/1.0.0/api/2/application-properties")
uri.query = URI.encode_www_form({
"key" => "YOUR_API_KEY",
"keyFilter" => "example",
"permissionLevel" => "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/jira.local/1.0.0/api/2/application-properties?" . http_build_query([
"key" => "YOUR_API_KEY",
"keyFilter" => "example",
"permissionLevel" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Returns a list of all dashboards, optionally filtering them.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/jira.local/1.0.0/api/2/dashboard?filter=example&startAt=1&maxResults=1"
import requests
params = {
"filter": "example",
"startAt": "1",
"maxResults": "1"
}
response = requests.get(
"https://api.apis.guru/v2/specs/jira.local/1.0.0/api/2/dashboard",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/jira.local/1.0.0/api/2/dashboard');
url.searchParams.set('filter', 'example');
url.searchParams.set('startAt', '1');
url.searchParams.set('maxResults', '1');
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/jira.local/1.0.0/api/2/dashboard")
q := baseURL.Query()
q.Set("filter", "example")
q.Set("startAt", "1")
q.Set("maxResults", "1")
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/jira.local/1.0.0/api/2/dashboard")
uri.query = URI.encode_www_form({
"filter" => "example",
"startAt" => "1",
"maxResults" => "1"
})
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/jira.local/1.0.0/api/2/dashboard?" . http_build_query([
"filter" => "example",
"startAt" => "1",
"maxResults" => "1"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Returns REST representation for the requested group. Allows to get list of active users belonging to the specified group and its subgroups if "users" expand option is provided. You can page through users list by using indexes in expand param. For example to get users from index 10 to index 15 use
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/jira.local/1.0.0/api/2/group?expand=example&groupname=example"
import requests
params = {
"expand": "example",
"groupname": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/jira.local/1.0.0/api/2/group",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/jira.local/1.0.0/api/2/group');
url.searchParams.set('expand', 'example');
url.searchParams.set('groupname', '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/jira.local/1.0.0/api/2/group")
q := baseURL.Query()
q.Set("expand", "example")
q.Set("groupname", "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/jira.local/1.0.0/api/2/group")
uri.query = URI.encode_www_form({
"expand" => "example",
"groupname" => "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/jira.local/1.0.0/api/2/group?" . http_build_query([
"expand" => "example",
"groupname" => "example"
]);
$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
- See official documentation for authentication and setup.
What can you build with JIRA 7.6.1?
JIRA 7.6.1 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. JIRA 7.6.1 is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide