All URIs are relative to https://esi.tech.ccp.is/latest
Method | HTTP request | Description |
---|---|---|
getIndustryFacilities | GET /industry/facilities/ | List industry facilities |
getIndustrySystems | GET /industry/systems/ | List solar system cost indices |
\Swagger\Client\Model\GetIndustryFacilities200Ok[] getIndustryFacilities($datasource)
List industry facilities
Return a list of industry facilities --- Alternate route: /v1/industry/facilities/
Alternate route: /legacy/industry/facilities/
Alternate route: /dev/industry/facilities/
--- This route is cached for up to 3600 seconds
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\Api\IndustryApi();
$datasource = "tranquility"; // string | The server name you would like data from
try {
$result = $api_instance->getIndustryFacilities($datasource);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling IndustryApi->getIndustryFacilities: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
datasource | string | The server name you would like data from | [optional] [default to tranquility] |
\Swagger\Client\Model\GetIndustryFacilities200Ok[]
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Swagger\Client\Model\GetIndustrySystems200Ok[] getIndustrySystems($datasource)
List solar system cost indices
Return cost indices for solar systems --- Alternate route: /v1/industry/systems/
Alternate route: /legacy/industry/systems/
Alternate route: /dev/industry/systems/
--- This route is cached for up to 3600 seconds
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\Api\IndustryApi();
$datasource = "tranquility"; // string | The server name you would like data from
try {
$result = $api_instance->getIndustrySystems($datasource);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling IndustryApi->getIndustrySystems: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
datasource | string | The server name you would like data from | [optional] [default to tranquility] |
\Swagger\Client\Model\GetIndustrySystems200Ok[]
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]