Find an API

Search public APIs with auth details & Postman guides

← All APIs

OnSched Setup API

onsched · Company

Company No Auth Free & Open collaboration

Build secure and scalable custom apps for onboarding and setup. Our flexible API provides many options for configuration. Take the API for a test drive. Just click on the Authorize button below and authenticate. You can access our demo company profile if you are not a customer, or your own profile by using your assigned ClientId and Secret. The API has two interfaces, consumer and setup. The consumer interface provides all the endpoints required for implemen

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET List Appointments

Use this endpoint to return a List of Appointments . Use the offset and limit parameters to control the page start and number of results. Default offset is 0, limit is 20, max is 100. Use the query parameters to filter the results further. For more information: <a href="https://onsched.read

https://api.apis.guru/v2/specs/onsched.com/setup/v1/setup/v1/appointments?email=[email protected]&limit=10&offset=0&status=example&endDate=example&bookedBy=example&lastname=example&serviceId=example&startDate=example&calendarId=example&customerId=example&locationId=example&resourceId=example&serviceAllocationId=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/onsched.com/setup/v1/setup/v1/appointments?email=test%40example.com&limit=10&offset=0&status=example&endDate=example&bookedBy=example&lastname=example&serviceId=example&startDate=example&calendarId=example&customerId=example&locationId=example&resourceId=example&serviceAllocationId=example"
import requests
params = {
    "email": "[email protected]",
    "limit": "10",
    "offset": "0",
    "status": "example",
    "endDate": "example",
    "bookedBy": "example",
    "lastname": "example",
    "serviceId": "example",
    "startDate": "example",
    "calendarId": "example",
    "customerId": "example",
    "locationId": "example",
    "resourceId": "example",
    "serviceAllocationId": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/onsched.com/setup/v1/setup/v1/appointments",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/onsched.com/setup/v1/setup/v1/appointments');
url.searchParams.set('email', '[email protected]');
url.searchParams.set('limit', '10');
url.searchParams.set('offset', '0');
url.searchParams.set('status', 'example');
url.searchParams.set('endDate', 'example');
url.searchParams.set('bookedBy', 'example');
url.searchParams.set('lastname', 'example');
url.searchParams.set('serviceId', 'example');
url.searchParams.set('startDate', 'example');
url.searchParams.set('calendarId', 'example');
url.searchParams.set('customerId', 'example');
url.searchParams.set('locationId', 'example');
url.searchParams.set('resourceId', 'example');
url.searchParams.set('serviceAllocationId', '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/onsched.com/setup/v1/setup/v1/appointments")
	q := baseURL.Query()
	q.Set("email", "[email protected]")
	q.Set("limit", "10")
	q.Set("offset", "0")
	q.Set("status", "example")
	q.Set("endDate", "example")
	q.Set("bookedBy", "example")
	q.Set("lastname", "example")
	q.Set("serviceId", "example")
	q.Set("startDate", "example")
	q.Set("calendarId", "example")
	q.Set("customerId", "example")
	q.Set("locationId", "example")
	q.Set("resourceId", "example")
	q.Set("serviceAllocationId", "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/onsched.com/setup/v1/setup/v1/appointments")
uri.query = URI.encode_www_form({
  "email" => "[email protected]",
  "limit" => "10",
  "offset" => "0",
  "status" => "example",
  "endDate" => "example",
  "bookedBy" => "example",
  "lastname" => "example",
  "serviceId" => "example",
  "startDate" => "example",
  "calendarId" => "example",
  "customerId" => "example",
  "locationId" => "example",
  "resourceId" => "example",
  "serviceAllocationId" => "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/onsched.com/setup/v1/setup/v1/appointments?" . http_build_query([
    "email" => "[email protected]",
    "limit" => "10",
    "offset" => "0",
    "status" => "example",
    "endDate" => "example",
    "bookedBy" => "example",
    "lastname" => "example",
    "serviceId" => "example",
    "startDate" => "example",
    "calendarId" => "example",
    "customerId" => "example",
    "locationId" => "example",
    "resourceId" => "example",
    "serviceAllocationId" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET List Users

Use this endpoint to return a List of Business Users and their Roles . The results are returned in pages. Use the offset and limit parameters to control the page start and number of results. Default offset is 0, limit is 20, max is 100. Use the query parameters to filter the results further

https://api.apis.guru/v2/specs/onsched.com/setup/v1/setup/v1/businessusers?role=example&email=[email protected]&limit=10&offset=0&locationId=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/onsched.com/setup/v1/setup/v1/businessusers?role=example&email=test%40example.com&limit=10&offset=0&locationId=example"
import requests
params = {
    "role": "example",
    "email": "[email protected]",
    "limit": "10",
    "offset": "0",
    "locationId": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/onsched.com/setup/v1/setup/v1/businessusers",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/onsched.com/setup/v1/setup/v1/businessusers');
url.searchParams.set('role', 'example');
url.searchParams.set('email', '[email protected]');
url.searchParams.set('limit', '10');
url.searchParams.set('offset', '0');
url.searchParams.set('locationId', '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/onsched.com/setup/v1/setup/v1/businessusers")
	q := baseURL.Query()
	q.Set("role", "example")
	q.Set("email", "[email protected]")
	q.Set("limit", "10")
	q.Set("offset", "0")
	q.Set("locationId", "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/onsched.com/setup/v1/setup/v1/businessusers")
uri.query = URI.encode_www_form({
  "role" => "example",
  "email" => "[email protected]",
  "limit" => "10",
  "offset" => "0",
  "locationId" => "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/onsched.com/setup/v1/setup/v1/businessusers?" . http_build_query([
    "role" => "example",
    "email" => "[email protected]",
    "limit" => "10",
    "offset" => "0",
    "locationId" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET List Calendars

Use this endpoint to return a List of Calendars from the requested location. If not specified, the business location defaults to the primary business location.

https://api.apis.guru/v2/specs/onsched.com/setup/v1/setup/v1/calendars?limit=10&offset=0&deleted=true&locationId=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/onsched.com/setup/v1/setup/v1/calendars?limit=10&offset=0&deleted=true&locationId=example"
import requests
params = {
    "limit": "10",
    "offset": "0",
    "deleted": "true",
    "locationId": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/onsched.com/setup/v1/setup/v1/calendars",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/onsched.com/setup/v1/setup/v1/calendars');
url.searchParams.set('limit', '10');
url.searchParams.set('offset', '0');
url.searchParams.set('deleted', 'true');
url.searchParams.set('locationId', '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/onsched.com/setup/v1/setup/v1/calendars")
	q := baseURL.Query()
	q.Set("limit", "10")
	q.Set("offset", "0")
	q.Set("deleted", "true")
	q.Set("locationId", "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/onsched.com/setup/v1/setup/v1/calendars")
uri.query = URI.encode_www_form({
  "limit" => "10",
  "offset" => "0",
  "deleted" => "true",
  "locationId" => "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/onsched.com/setup/v1/setup/v1/calendars?" . http_build_query([
    "limit" => "10",
    "offset" => "0",
    "deleted" => "true",
    "locationId" => "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

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with OnSched Setup API?

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

New to APIs? Read our beginner's guide · Learn about API keys · What is REST?

Open documentation ↗