Documentation
Teamfluence API v2.0
REST API reference for Teamfluence workspace, leads, and system endpoints
The Teamfluence API exposes workspace and lead data through a secure JSON REST interface.
Quickstart
Authenticate with a bearer token and make your first API request.
Workspace Endpoints
List team members and check workspace credits.
Leads Endpoints
List leads with filters and update lead records.
Errors and Validation
Understand validation and error response formats.
Base URL and Version
- Base URL: https://api.teamfluence.com
- API prefix: /v2
- OpenAPI version: 3.1.0
- API version (info.version): 0.2.0
Authentication
All protected endpoints require a bearer token in the Authorization header.
Authorization: Bearer <your_api_key>Generate your API key from Teamfluence workspace settings.
Warning
Use HTTPS only. Requests over HTTP or requests without authentication fail.
Endpoint Groups
- workspace: workspace users and credits balance
- leads: list and update leads
- default: health check endpoint
OpenAPI Schema
The machine-readable API specification is available at:
Terms and Contact
- Terms of service: https://teamfluence.com/tos
- API website: https://developer.teamfluence.com/
- Contact email: developer@teamfluence.com
Example Request
curl -X GET "https://api.teamfluence.com/v2/workspace/credits" \
-H "Authorization: Bearer $TEAMFLUENCE_API_KEY" \
-H "Accept: application/json"