> ## Documentation Index
> Fetch the complete documentation index at: https://docs.teamcaredental.com/llms.txt
> Use this file to discover all available pages before exploring further.

# API Versioning Strategy for TeamCare

> TeamCare APIs use explicit URL path versioning (/v1/, /v2/) so each major version is a stable, independent interface with no silent breaking changes.

TeamCare APIs use explicit URL path versioning. The version identifier is embedded directly in the request path (for example, `/v1/` or `/v2/`). This means each major version is a stable, independent interface, and breaking changes are only introduced in new major versions.

## How versioning works

Requests include the version number in the path:

```text theme={null}
https://app.teamcaredental.com/api/v1/vendors/organizations
```

Within a major version, the interface remains stable. Fields, endpoints, and behavior will not change in ways that break existing integrations.

## Current version

<Note>
  The current API version is `v1`. All endpoints documented here use the `/v1/` path prefix.
</Note>

When a new major version is released, the previous version remains available for a transition period, giving you time to update your integration without disruption.
