|
# Server API
|
|
|
|
Endpoints for server information and capabilities.
|
|
|
|
## Server Information
|
|
|
|
**Endpoint**: `GET /api/server/index.php`
|
|
|
|
Get server information and API capabilities.
|
|
|
|
### Response
|
|
|
|
```json
|
|
{
|
|
"name": "Aurora GIS",
|
|
"version": "1.0.0",
|
|
"capabilities": {
|
|
"datasets": true,
|
|
"analysis": true,
|
|
"raster": true,
|
|
"workers": true
|
|
},
|
|
"endpoints": {
|
|
"datasets": "/api/datasets/",
|
|
"analysis": "/api/analysis/",
|
|
"jobs": "/api/jobs/"
|
|
}
|
|
}
|
|
```
|
|
|
|
## Basic API Information
|
|
|
|
**Endpoint**: `GET /api/basic/index.php`
|
|
|
|
Get basic API information and available endpoints.
|
|
|
|
### Response
|
|
|
|
```json
|
|
{
|
|
"name": "Basic API",
|
|
"version": "1.0.0",
|
|
"endpoints": {
|
|
"datasets": "/api/basic/index.php/datasets",
|
|
"query": "/api/basic/index.php/datasets/{id}/query"
|
|
}
|
|
}
|
|
```
|
|
|
|
## Related Documentation
|
|
|
|
- [Datasets API](datasets.md)
|
|
- [Analysis API](analysis.md)
|
|
- [Architecture Overview](../architecture.md)
|
|
|