ESI\Client\IndustryApi

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

getIndustryFacilities

\ESI\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

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new ESI\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;
}
?>

Parameters

Name Type Description Notes
datasource string The server name you would like data from [optional] [default to tranquility]

Return type

\ESI\Client\Model\GetIndustryFacilities200Ok[]

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

getIndustrySystems

\ESI\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

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new ESI\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;
}
?>

Parameters

Name Type Description Notes
datasource string The server name you would like data from [optional] [default to tranquility]

Return type

\ESI\Client\Model\GetIndustrySystems200Ok[]

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]