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 the Corporate Dashboard.
Header Format:Authorization: Bearer <YOUR_API_KEY>
Returns the latest 7-day prediction for global fishing activity.
HTTP RequestGET <https://fishing.androai.us/api/v1/fishing-prediction>
Example Request (cURL)
Bash
curl -X GET "<https://fishing.androai.us/api/v1/fishing-prediction>" \\ -H "Authorization: Bearer YOUR_API_KEY"
The API returns a standard GeoJSON FeatureCollection. Each Feature represents a spatial polygon with associated predictive properties.
Property Dictionary:
time: The forecast date (YYYY-MM-DD).score: The confidence score representing the likelihood of fishing activity.Example Response
JSON
{ "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": 0.070000000298023224 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.592057610471173, -80.037027467025112 ], [ -77.592057610471173, -80.176389888349462 ], [ -77.666127081999932, -80.181735934999949 ], [ -77.703277147999927, -80.178317966999941 ], [ -77.779042120999918, -80.161879164999903 ], [ -77.900542772999913, -80.149021091999941 ], [ -78.273182745999918, -80.178155205999929 ], [ -78.296254035999937, -80.17546965899993 ], [ -78.372670050999943, -80.150323174999926 ], [ -78.79691864033326, -80.10730017166658 ], [ -79.221167229666605, -80.064277168333248 ], [ -79.388688178710211, -80.047310869132048 ], [ -79.388688178710211, -80.037027467025112 ], [ -77.592057610471173, -80.037027467025112 ] ] ] } } ] }