Hosts

Get information about UP42 data hosts.


Overview

Data hosts are providers that offer access to data acquired by a producer. Hosts are either commercial or non-commercial.

See data hosts

To see a list of all available data hosts, call the /hosts endpoint.

Request

GET /hosts HTTP/1.1
Host: api.up42.com
Query parameterOverview
is_integratedstring
Whether it is integrated in the UP42 API. The default value is true.

You can order non-integrated data by contacting the Operations team.

Response


See response example
{
  "data": [
    {
      "name": "nearspacelabs",
      "title": "Near Space Labs",
      "description": "A commercial stratospheric imagery provider offering analytics-ready, very high-resolution images captured from sub-daily flights.",
      "isIntegrated": true,
      "isCommercial": true,
      "createdAt": "2022-02-02T11:06:09.581868Z",
      "updatedAt": "2022-02-02T11:06:09.581868Z"
    },
    {
      "name": "21at",
      "title": "21AT",
      "description": "21AT Asia is a provider of commercial high-resolution remote sensing imagery products and its value-added services..",
      "isIntegrated": true,
      "isCommercial": true,
      "createdAt": "2022-02-28T16:10:54.593982Z",
      "updatedAt": "2022-02-28T16:10:54.593982Z"
    }
  ],
  "error": null
}

ParameterOverview
data.namestring
The name of the data host.
data.titlestring
The title of the data host.
data.descriptionstring
The description of the data host.
data.isIntegratedboolean
Whether the data host is integrated in the UP42 API.

You can order data from non-integrated data hosts by contacting the Operations team.
data.isCommercialboolean
Whether the data host provides data on a commercial basis.
data.createdAtstring
The timestamp when the the data host was created.
data.updatedAtstring
The timestamp when the the data host was updated.

See a particular data host

To see information about one data host, call the /hosts/{host_name} endpoint with a specific host_name as a path parameter.

Request

GET hosts/{host_name} HTTP/1.1
Host: api.up42.com

Response

The response is an object from the /hosts data array.

See response example
{
  "data": {
    "name": "oneatlas",
    "title": "OneAtlas",
    "description": "OneAtlas is the platform that provides access to the Airbus constellation of satellites.",
    "isIntegrated": true,
    "isCommercial": true,
    "createdAt": "2021-08-10T11:25:54.203814Z",
    "updatedAt": "2022-04-04T10:45:58.064559Z"
  },
  "error": null
}