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 parameter | Overview |
---|---|
is_integrated | string 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
}
Parameter | Overview |
---|---|
data.name | string The name of the data host. |
data.title | string The title of the data host. |
data.description | string The description of the data host. |
data.isIntegrated | boolean 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.isCommercial | boolean Whether the data host provides data on a commercial basis. |
data.createdAt | string The timestamp when the the data host was created. |
data.updatedAt | string 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
}