Andromeda AI API Documentation


Authentication

The Andromeda AI Corporate API uses Bearer Token authentication. You must include your API key in the Authorization header of every request. You can generate your API key from your Corporate Dashboard.

Header Format:
Authorization: Bearer <YOUR_API_KEY>

GETT+7 Target Presence API

Returns the latest T+7 prediction for global target presence.

HTTP Request:
https://corporate.androai.us/api/v1/target-prediction

Example Request (cURL)

curl -X GET "https://corporate.androai.us/api/v1/target-prediction" \
     -H "Authorization: Bearer YOUR_API_KEY"

Response Format (GeoJSON)

The API returns a standard GeoJSON FeatureCollection. Each Feature represents a spatial polygon with associated predictive properties.

Property Dictionary:

Example Response

{
  "type": "FeatureCollection",
  "name": "prediction",
  "crs": {
    "type": "name",
    "properties": {
      "name": "urn:ogc:def:crs:OGC:1.3:CRS84"
    }
  },
  "features": [
    {
      "type": "Feature",
      "properties": {
        "time": "2026-03-27",
        "score_fishing": 0.35,
        "score_dark": 0.15,
        "score_ghost": 0.45
      },
      "geometry": {
        "type": "Polygon",
        "coordinates": [
          [
            [ -77.59205761047117, -80.03702746702511 ],
            [ -77.59205761047117, -80.17638988834946 ],
            [ -77.66612708199993, -80.18173593499995 ],
            [ -77.70327714799993, -80.17831796699994 ],
            [ -77.77904212099992, -80.16187916499990 ],
            [ -77.90054277299991, -80.14902109199994 ],
            [ -78.27318274599992, -80.17815520599993 ],
            [ -78.29625403599994, -80.17546965899993 ],
            [ -78.37267005099994, -80.15032317499993 ],
            [ -78.79691864033326, -80.10730017166658 ],
            [ -79.22116722966660, -80.06427716833325 ],
            [ -79.38868817871021, -80.04731086913205 ],
            [ -79.38868817871021, -80.03702746702511 ],
            [ -77.59205761047117, -80.03702746702511 ]
          ]
        ]
      }
    }
  ]
}