API Reference

Build powerful integrations with the LabTools API

RESTful API

Standard REST endpoints with JSON responses

https://api.thelabtools.com/v1

Authentication

JWT-based authentication with Bearer tokens

Authorization: Bearer <token>

Rate Limits

1000 requests/hour for Pro, unlimited for Enterprise

X-RateLimit-Remaining: 999

API Sections

Authentication

Manage authentication and user sessions

GraphQL API

Also available: GraphQL endpoint for flexible queries

Endpoint

https://api.thelabtools.com/graphql

Playground

Open GraphQL Playground

Example Query

query GetUserTeams {
  user {
    id
    email
    teams {
      id
      name
      members {
        id
        role
      }
    }
  }
}

Official SDKs

JavaScript/TypeScript

npm install @labtools/sdk
View Documentation →

Python

pip install labtools-sdk
View Documentation →

R

install.packages("labtools")
View Documentation →