Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
title: API
author: Duncan Macleod <duncan.macleod@ligo.org>

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 /version API endpoint, which returns the supported API version(s):

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