Skip to content

General API (1.0)

The Tidepool API is an HTTP REST API used by Tidepool clients use to communicate with the Tidepool Platform.

For more information, see the Getting Started section.

Download OpenAPI description
Languages
Servers
Mock server

https://tidepool.redocly.app/_mock/reference/general.v1/

integration

https://external.integration.tidepool.org/

production

https://api.tidepool.org/

dev1

https://dev1.dev.tidepool.org/

qa1

https://qa1.development.tidepool.org/

qa2

https://qa2.development.tidepool.org/

Internal

APIs intended for internal use by Tidepool.

Operations

Request

Returns minimum Tidepool client application versions. If a client application detects that it is older than the minimum version returned by this API, it should notify the user and terminate promptly. This API requires no authentication or authorization.

curl -i -X GET \
  https://tidepool.redocly.app/_mock/reference/general.v1/info

Responses

Tidepool Minimum Client Versions

Bodyapplication/json
versionsobjectrequired
versions.​uploaderMinimumstring(Semantic Version Number)>= 5 characters^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-...required
Example: "2.36.1"
property name*anyadditional property
Response
application/json
{ "versions": { "uploaderMinimum": "2.36.1" } }
Operations