API V1
versioneye · Data
VersionEye is a cross-platform search engine for free/libre/open source software libraries.
Authentication
No authentication requiredFree to use with no key needed.
Sample Requests
GET
Retrieves all scans
Retrieves all scans
https://api.apis.guru/v2/specs/versioneye.com/v1/api/v1/scans?name=test&per_page=10
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/versioneye.com/v1/api/v1/scans?name=test&per_page=10"
import requests
params = {
"name": "test",
"per_page": "10"
}
response = requests.get(
"https://api.apis.guru/v2/specs/versioneye.com/v1/api/v1/scans",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/versioneye.com/v1/api/v1/scans');
url.searchParams.set('name', 'test');
url.searchParams.set('per_page', '10');
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/versioneye.com/v1/api/v1/scans")
q := baseURL.Query()
q.Set("name", "test")
q.Set("per_page", "10")
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/versioneye.com/v1/api/v1/scans")
uri.query = URI.encode_www_form({
"name" => "test",
"per_page" => "10"
})
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/versioneye.com/v1/api/v1/scans?" . http_build_query([
"name" => "test",
"per_page" => "10"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET
Retrieves a project scan result
Retrieves a project scan result
https://api.apis.guru/v2/specs/versioneye.com/v1/api/v1/scans/{id}
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/versioneye.com/v1/api/v1/scans/{id}"import requests
response = requests.get(
"https://api.apis.guru/v2/specs/versioneye.com/v1/api/v1/scans/{id}",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/versioneye.com/v1/api/v1/scans/{id}';
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/versioneye.com/v1/api/v1/scans/{id}"
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/versioneye.com/v1/api/v1/scans/{id}")
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/versioneye.com/v1/api/v1/scans/{id}";
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET
Retrieves a file object, containing information about dependencies in the file
Retrieves a file object, containing information about dependencies in the file
https://api.apis.guru/v2/specs/versioneye.com/v1/api/v1/scans/{id}/files/{file_id}?per_page=10
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/versioneye.com/v1/api/v1/scans/{id}/files/{file_id}?per_page=10"import requests
params = {
"per_page": "10"
}
response = requests.get(
"https://api.apis.guru/v2/specs/versioneye.com/v1/api/v1/scans/{id}/files/{file_id}",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/versioneye.com/v1/api/v1/scans/{id}/files/{file_id}');
url.searchParams.set('per_page', '10');
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/versioneye.com/v1/api/v1/scans/{id}/files/{file_id}")
q := baseURL.Query()
q.Set("per_page", "10")
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/versioneye.com/v1/api/v1/scans/{id}/files/{file_id}")
uri.query = URI.encode_www_form({
"per_page" => "10"
})
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/versioneye.com/v1/api/v1/scans/{id}/files/{file_id}?" . http_build_query([
"per_page" => "10"
]);
$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 API V1?
API V1 is a Data API. Developers commonly use data APIs for:
- enriching your app with third-party datasets
- building data pipelines and ETL workflows
- querying and searching large datasets
- powering research, analysis, and reporting tools
- syncing reference data into your own systems
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. API V1 is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide