Download OpenAPI specification:Download
Routes requiring Basic authorization use username:apikey, where username is account username and password is the account's active API Key to use
Query imagery contained by a GeoJSON (Multi)Polygon for a given week
week | string Example: week=2023-10-31 YYYY-mm-dd of a day in the week to query |
GeoJSON (Multi)Polygon
type | string Polygon or MultiPolygon |
coordinates | Array of numbers[ items[ items <float64 >[ items <float64 > ] ] ] |
{- "type": "Polygon",
- "coordinates": [
- [
- [
- -122.48185591741223,
- 37.76910370072376
]
]
]
}
{- "frames": [
- {
- "timestamp": "2023-11-09T02:30:48.974Z",
- "sequence": "60cb39e7cce2931a8cd2fa2d",
- "idx": 0,
- "device": "hdc",
- "position": {
- "lat": 37.76910370072376,
- "lat_ref": "n",
- "lon": -122.48185591741223,
- "lon_ref": "e",
- "gdop": 0.123,
- "hdop": 0.123,
- "pdop": 0.123,
- "eph": 0.123
}, - "width": 2028,
- "height": 1024,
- "imu": {
- "acc_x": 0.123,
- "acc_y": 0.123,
- "acc_z": 0.123,
- "gyro_x": 0.123,
- "gyro_y": 0.123,
- "gyro_z": 0.123
}
}
], - "creditsUsed": 42,
- "creditsRemaining": 1000000
}
Query latest contained by a GeoJSON (Multi)Polygon
min_week | string Example: min_week=2023-10-31 YYYY-mm-dd of a day in the week to use as cutoff |
GeoJSON (Multi)Polygon
Array of objects (ImageryResults) | |
creditsUsed | integer Number of credits consumed by query |
creditsRemaining | integer Number of credits remaining |
{- "frames": [
- {
- "timestamp": "2023-11-09T02:30:48.974Z",
- "sequence": "60cb39e7cce2931a8cd2fa2d",
- "idx": 0,
- "device": "hdc",
- "position": {
- "lat": 37.76910370072376,
- "lat_ref": "n",
- "lon": -122.48185591741223,
- "lon_ref": "e",
- "gdop": 0.123,
- "hdop": 0.123,
- "pdop": 0.123,
- "eph": 0.123
}, - "width": 2028,
- "height": 1024,
- "imu": {
- "acc_x": 0.123,
- "acc_y": 0.123,
- "acc_z": 0.123,
- "gyro_x": 0.123,
- "gyro_y": 0.123,
- "gyro_z": 0.123
}
}
], - "creditsUsed": 42,
- "creditsRemaining": 1000000
}
{- "frames": [
- {
- "timestamp": "2023-11-09T02:30:48.974Z",
- "sequence": "60cb39e7cce2931a8cd2fa2d",
- "idx": 0,
- "device": "hdc",
- "position": {
- "lat": 37.76910370072376,
- "lat_ref": "n",
- "lon": -122.48185591741223,
- "lon_ref": "e",
- "gdop": 0.123,
- "hdop": 0.123,
- "pdop": 0.123,
- "eph": 0.123
}, - "width": 2028,
- "height": 1024,
- "imu": {
- "acc_x": 0.123,
- "acc_y": 0.123,
- "acc_z": 0.123,
- "gyro_x": 0.123,
- "gyro_y": 0.123,
- "gyro_z": 0.123
}
}
], - "creditsUsed": 42,
- "creditsRemaining": 1000000
}
Fetch history of API queries
limit | integer Example: limit=100 Max results to return |
skip | integer Results to skip |
{- "history": [
- {
- "area": 101.123,
- "credits": 4,
- "payload": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- -122.48185591741223,
- 37.76910370072376
]
]
]
}, - "timestamp": "2023-11-09T03:09:40.131Z",
- "weeks": [
- "2023-10-31"
]
}
]
}