Skip to main content
The Tikk API is a read-only REST API for your own data. Your public profile and services, your available time slots and the bookings people have made with you. Every endpoint responds with JSON and requires a valid bearer token. No public, unauthenticated routes.

Base URL

All requests go to the following base URL:

Key characteristics

  • All responses are JSON
  • All timestamps are ISO 8601 in UTC
  • Every request must include a bearer token in the Authorization header
  • Rate limit: 60 requests per minute per credential

Endpoints

Use the cards below to jump to each endpoint’s reference page.

GET /profile

Retrieve your public profile, username, and active services.

GET /availability

List your free time slots by day for a given date range.

GET /bookings

Retrieve a paginated list of all bookings on your account.

GET /bookings/{id}

Look up a single booking by its unique identifier.

Next steps

Before making your first request, read the Authentication page to learn how to obtain and send a credential, then review Scopes to understand which permissions each endpoint requires.