Work with this as data
Every API here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/bamboohr-time-off-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
OpenAPI Specification
openapi: 3.2.0
info:
title: BambooHR REST Directory Time Off API
version: v1
description: 'RESTful HTTPS API for the BambooHR HRIS. Access employee data, the employee
directory, time-off, reports, and files. Authentication is per-customer API
key (HTTP Basic; username = API key, password = any non-empty string) or
OAuth 2.0 (bearer token).
The base URL is per-customer: `https://api.bamboohr.com/api/gateway.php/{companyDomain}/v1`.
'
contact:
name: BambooHR API
url: https://documentation.bamboohr.com/docs
servers:
- url: https://api.bamboohr.com/api/gateway.php/{companyDomain}/v1
description: BambooHR customer endpoint
variables:
companyDomain:
default: mycompany
description: Your BambooHR subdomain
tags:
- name: Time Off
description: Time-off requests and balances
paths:
/time_off/requests:
get:
summary: List time off requests
operationId: listTimeOffRequests
tags:
- Time Off
parameters:
- in: query
name: id
schema:
type: string
- in: query
name: action
schema:
type: string
enum:
- view
- approve
- in: query
name: employeeId
schema:
type: string
- in: query
name: start
schema:
type: string
format: date
- in: query
name: end
schema:
type: string
format: date
- in: query
name: type
schema:
type: string
- in: query
name: status
schema:
type: string
enum:
- approved
- denied
- superceded
- requested
- canceled
responses:
'200':
description: Time off requests
content:
application/json:
schema:
type: array
items:
type: object
security:
- basicAuth: []
- oauth2: []
/employees/{id}/time_off/request:
parameters:
- in: path
name: id
required: true
schema:
type: string
put:
summary: Add a time off request for an employee
operationId: addTimeOffRequest
tags:
- Time Off
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- status
- start
- end
- timeOffTypeId
properties:
status:
type: string
enum:
- approved
- requested
start:
type: string
format: date
end:
type: string
format: date
timeOffTypeId:
type: integer
amount:
type: number
notes:
type: object
responses:
'201':
description: Created
security:
- basicAuth: []
- oauth2: []
components:
securitySchemes:
basicAuth:
type: http
scheme: basic
description: HTTP Basic auth. Use the API key as the username and any non-empty string as the password.
oauth2:
type: oauth2
description: OAuth 2.0 authorization code flow (for multi-customer apps).
flows:
authorizationCode:
authorizationUrl: https://api.bamboohr.com/oauth/authorize.php
tokenUrl: https://api.bamboohr.com/token.php
scopes:
offline_access: Issue a refresh token along with the access token