Find an API

Search public APIs with auth details & Postman guides

← All APIs

IllumiDesk

illumidesk · Data

Data No Auth Free & Open open_data

IllumiDesk API

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET Get teams

Get teams

https://api.apis.guru/v2/specs/illumidesk.com/1.0/v1/teams?limit=10&offset=0

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/illumidesk.com/1.0/v1/teams/?limit=10&offset=0"
import requests
params = {
    "limit": "10",
    "offset": "0"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/illumidesk.com/1.0/v1/teams/",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/illumidesk.com/1.0/v1/teams/');
url.searchParams.set('limit', '10');
url.searchParams.set('offset', '0');

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/illumidesk.com/1.0/v1/teams/")
	q := baseURL.Query()
	q.Set("limit", "10")
	q.Set("offset", "0")
	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/illumidesk.com/1.0/v1/teams/")
uri.query = URI.encode_www_form({
  "limit" => "10",
  "offset" => "0"
})

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/illumidesk.com/1.0/v1/teams/?" . http_build_query([
    "limit" => "10",
    "offset" => "0"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Get user list

Get user list

https://api.apis.guru/v2/specs/illumidesk.com/1.0/v1/users/profiles?email=[email protected]&limit=10&offset=0&ordering=example&username=testuser

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/illumidesk.com/1.0/v1/users/profiles/?email=test%40example.com&limit=10&offset=0&ordering=example&username=testuser"
import requests
params = {
    "email": "[email protected]",
    "limit": "10",
    "offset": "0",
    "ordering": "example",
    "username": "testuser"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/illumidesk.com/1.0/v1/users/profiles/",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/illumidesk.com/1.0/v1/users/profiles/');
url.searchParams.set('email', '[email protected]');
url.searchParams.set('limit', '10');
url.searchParams.set('offset', '0');
url.searchParams.set('ordering', 'example');
url.searchParams.set('username', 'testuser');

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/illumidesk.com/1.0/v1/users/profiles/")
	q := baseURL.Query()
	q.Set("email", "[email protected]")
	q.Set("limit", "10")
	q.Set("offset", "0")
	q.Set("ordering", "example")
	q.Set("username", "testuser")
	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/illumidesk.com/1.0/v1/users/profiles/")
uri.query = URI.encode_www_form({
  "email" => "[email protected]",
  "limit" => "10",
  "offset" => "0",
  "ordering" => "example",
  "username" => "testuser"
})

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/illumidesk.com/1.0/v1/users/profiles/?" . http_build_query([
    "email" => "[email protected]",
    "limit" => "10",
    "offset" => "0",
    "ordering" => "example",
    "username" => "testuser"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET A convenience endpoint that is equivalent to GET /v1/users/profiles/<my user id>/

A convenience endpoint that is equivalent to GET /v1/users/profiles/ /

https://api.apis.guru/v2/specs/illumidesk.com/1.0/v1/me

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/illumidesk.com/1.0/v1/me"
import requests
response = requests.get(
    "https://api.apis.guru/v2/specs/illumidesk.com/1.0/v1/me",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/illumidesk.com/1.0/v1/me';

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/illumidesk.com/1.0/v1/me"
	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/illumidesk.com/1.0/v1/me")

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/illumidesk.com/1.0/v1/me";
$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 IllumiDesk?

IllumiDesk 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. IllumiDesk is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide

Open documentation ↗