FishEye
fisheye · Developer Tools
FishEye API
Authentication
No authentication requiredFree to use with no key needed.
Sample Requests
GET
getChangesetsForText
List of changesets from a repository.
https://api.apis.guru/v2/specs/fisheye.local/1.0.0/rest-service-fe/changeset-v1/listChangesets?rep=example&path=example&expand=example&comment=example&committer=example&beforeCsid=example&p4JobFixed=example
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/fisheye.local/1.0.0/rest-service-fe/changeset-v1/listChangesets?rep=example&path=example&expand=example&comment=example&committer=example&beforeCsid=example&p4JobFixed=example"
import requests
params = {
"rep": "example",
"path": "example",
"expand": "example",
"comment": "example",
"committer": "example",
"beforeCsid": "example",
"p4JobFixed": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/fisheye.local/1.0.0/rest-service-fe/changeset-v1/listChangesets",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/fisheye.local/1.0.0/rest-service-fe/changeset-v1/listChangesets');
url.searchParams.set('rep', 'example');
url.searchParams.set('path', 'example');
url.searchParams.set('expand', 'example');
url.searchParams.set('comment', 'example');
url.searchParams.set('committer', 'example');
url.searchParams.set('beforeCsid', 'example');
url.searchParams.set('p4JobFixed', '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/fisheye.local/1.0.0/rest-service-fe/changeset-v1/listChangesets")
q := baseURL.Query()
q.Set("rep", "example")
q.Set("path", "example")
q.Set("expand", "example")
q.Set("comment", "example")
q.Set("committer", "example")
q.Set("beforeCsid", "example")
q.Set("p4JobFixed", "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/fisheye.local/1.0.0/rest-service-fe/changeset-v1/listChangesets")
uri.query = URI.encode_www_form({
"rep" => "example",
"path" => "example",
"expand" => "example",
"comment" => "example",
"committer" => "example",
"beforeCsid" => "example",
"p4JobFixed" => "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/fisheye.local/1.0.0/rest-service-fe/changeset-v1/listChangesets?" . http_build_query([
"rep" => "example",
"path" => "example",
"expand" => "example",
"comment" => "example",
"committer" => "example",
"beforeCsid" => "example",
"p4JobFixed" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET
getCrossRepositoryQuery
Execute a query across repositories. By default, this will search all repositories.
https://api.apis.guru/v2/specs/fisheye.local/1.0.0/rest-service-fe/search-v1/crossRepositoryQuery?query=test&expand=example&repository=example
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/fisheye.local/1.0.0/rest-service-fe/search-v1/crossRepositoryQuery?query=test&expand=example&repository=example"
import requests
params = {
"query": "test",
"expand": "example",
"repository": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/fisheye.local/1.0.0/rest-service-fe/search-v1/crossRepositoryQuery",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/fisheye.local/1.0.0/rest-service-fe/search-v1/crossRepositoryQuery');
url.searchParams.set('query', 'test');
url.searchParams.set('expand', 'example');
url.searchParams.set('repository', '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/fisheye.local/1.0.0/rest-service-fe/search-v1/crossRepositoryQuery")
q := baseURL.Query()
q.Set("query", "test")
q.Set("expand", "example")
q.Set("repository", "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/fisheye.local/1.0.0/rest-service-fe/search-v1/crossRepositoryQuery")
uri.query = URI.encode_www_form({
"query" => "test",
"expand" => "example",
"repository" => "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/fisheye.local/1.0.0/rest-service-fe/search-v1/crossRepositoryQuery?" . http_build_query([
"query" => "test",
"expand" => "example",
"repository" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET
getAllRepositories
List all the repositories.
https://api.apis.guru/v2/specs/fisheye.local/1.0.0/rest-service-fe/repositories-v1
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/fisheye.local/1.0.0/rest-service-fe/repositories-v1"
import requests
response = requests.get(
"https://api.apis.guru/v2/specs/fisheye.local/1.0.0/rest-service-fe/repositories-v1",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/fisheye.local/1.0.0/rest-service-fe/repositories-v1'; const response = await fetch(url); const data = await response.json(); console.log(data);
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/fisheye.local/1.0.0/rest-service-fe/repositories-v1"
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/fisheye.local/1.0.0/rest-service-fe/repositories-v1")
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/fisheye.local/1.0.0/rest-service-fe/repositories-v1";
$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 FishEye?
FishEye 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. FishEye is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide