SlideRoom API V2
slideroom · Company
SlideRoom provides a RESTful API for exporting data out of your organizations SlideRoom account.
Authentication
Sample Requests
Gets the custom attributes for an applicant.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/slideroom.com/v2/api/v2/applicant/attributes?pool=Standard&email=test%40example.com&commonAppYear=1"
import requests
params = {
"pool": "Standard",
"email": "[email protected]",
"commonAppYear": "1"
}
response = requests.get(
"https://api.apis.guru/v2/specs/slideroom.com/v2/api/v2/applicant/attributes",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/slideroom.com/v2/api/v2/applicant/attributes');
url.searchParams.set('pool', 'Standard');
url.searchParams.set('email', '[email protected]');
url.searchParams.set('commonAppYear', '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/slideroom.com/v2/api/v2/applicant/attributes")
q := baseURL.Query()
q.Set("pool", "Standard")
q.Set("email", "[email protected]")
q.Set("commonAppYear", "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/slideroom.com/v2/api/v2/applicant/attributes")
uri.query = URI.encode_www_form({
"pool" => "Standard",
"email" => "[email protected]",
"commonAppYear" => "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/slideroom.com/v2/api/v2/applicant/attributes?" . http_build_query([
"pool" => "Standard",
"email" => "[email protected]",
"commonAppYear" => "1"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Gets the custom applicant attributes used by the organization.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/slideroom.com/v2/api/v2/applicant/attributes/names"
import requests
response = requests.get(
"https://api.apis.guru/v2/specs/slideroom.com/v2/api/v2/applicant/attributes/names",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/slideroom.com/v2/api/v2/applicant/attributes/names'; 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/slideroom.com/v2/api/v2/applicant/attributes/names"
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/slideroom.com/v2/api/v2/applicant/attributes/names")
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/slideroom.com/v2/api/v2/applicant/attributes/names";
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Gets the custom application attributes used by the organization.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/slideroom.com/v2/api/v2/application/attributes/names"
import requests
response = requests.get(
"https://api.apis.guru/v2/specs/slideroom.com/v2/api/v2/application/attributes/names",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/slideroom.com/v2/api/v2/application/attributes/names'; 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/slideroom.com/v2/api/v2/application/attributes/names"
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/slideroom.com/v2/api/v2/application/attributes/names")
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/slideroom.com/v2/api/v2/application/attributes/names";
$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 SlideRoom API V2?
SlideRoom API V2 is a Company API. Developers commonly use company APIs for:
- enriching CRM records with company firmographics
- building lead-generation and prospecting tools
- verifying business identity and registration details
- monitoring competitors and market intelligence
- powering B2B data enrichment pipelines
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. SlideRoom API V2 is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide