Skip to content

GWDataFind Server API

The Application Programming Interface defines how users can interact with a GWDataFind Server instance to retrieve data.

API Versions

The API is versioned, and each GWDataFind Server instance implements one or more versions of the API depending on which version of the server software is being used.

The latest version of the API is v1.

Discovering the API version for a specific server

All GWDataFind servers support the /api/version API endpoint, which returns the supported API version(s):

curl https://gwdatafind.example.com/api/version
{
  "version": "1.5.0",
  "api_versions": [
    "ldr",
    "v1",
  ]
}