These forums have been archived and are now read-only.
The new forums are live and can be found at https://forums.eveonline.com/
Every Officer Mod In Eve With typeID
curl -s -X GET --header 'Accept: application/json' 'https://evekit-sde.orbital.enterprises/20170216/api/ws/v20170216/inv/meta_type?contid=-1&maxresults=1000&metaGroupID=%7B%20values%3A%20%5B5%5D%20%7D'
curl -s -X GET --header 'Accept: application/json' 'https://evekit-sde.orbital.enterprises/20170216/api/ws/v20170216/inv/meta_type?contid=-1&maxresults=1000&metaGroupID=%7B%20values%3A%20%5B5%5D%20%7D' | jq '.[] | .typeID'
curl -s -X GET --header 'Accept: application/json' 'https://evekit-sde.orbital.enterprises/20170216/api/ws/v20170216/inv/type?contid=-1&maxresults=1000&typeID=%7B%20values%3A%20%5B'$(curl -s -X GET --header 'Accept: application/json' 'https://evekit-sde.orbital.enterprises/20170216/api/ws/v20170216/inv/meta_type?contid=-1&maxresults=1000&metaGroupID=%7B%20values%3A%20%5B5%5D%20%7D' | jq '.[] | .typeID' | awk '{printf $1"," }' | sed -e 's/,$//g')'%5D%20%7D' | jq '.[] | .typeName, .typeID' | awk 'NR%2{printf "%s, ",$0;next;}1'
Use EveKit ! - Tools for EVE Online 3rd party development
curl -s -X GET --header 'Accept: application/json' 'https://evekit-sde.orbital.enterprises/20170216/api/ws/v20170216/inv/type?contid=-1&maxresults=1000&typeID=%7B%20values%3A%20%5B'$(curl -s -X GET --header 'Accept: application/json' 'https://evekit-sde.orbital.enterprises/20170216/api/ws/v20170216/inv/meta_type?contid=-1&maxresults=1000&metaGroupID=%7B%20values%3A%20%5B5%5D%20%7D' | jq '.[] | .typeID' | head -n 200 | awk '{printf $1"," }' | sed -e 's/,$//g')'%5D%20%7D' | jq '.[] | .typeName, .typeID' | awk 'NR%2{printf "%s, ",$0;next;}1'
curl -s -X GET --header 'Accept: application/json' 'https://evekit-sde.orbital.enterprises/20170216/api/ws/v20170216/inv/type?contid=-1&maxresults=1000&typeID=%7B%20values%3A%20%5B'$(curl -s -X GET --header 'Accept: application/json' 'https://evekit-sde.orbital.enterprises/20170216/api/ws/v20170216/inv/meta_type?contid=-1&maxresults=1000&metaGroupID=%7B%20values%3A%20%5B5%5D%20%7D' | jq '.[] | .typeID' | tail -n +200 | awk '{printf $1"," }' | sed -e 's/,$//g')'%5D%20%7D' | jq '.[] | .typeName, .typeID' | awk 'NR%2{printf "%s, ",$0;next;}1'
foreach ($officermodList as $key => $value) { foreach ($allmodList as $key2 => $value2) { if (strcmp($value['typeName'], $value2['typeName']) == 0){ echo $value['typeName'] . ", " . $value2['typeID']; } }}
foreach ($officermodList as $value) { foreach ($allmodList as $value2) { if (strcmp($value['typeName'], $value2['typeName']) == 0){ echo $value['typeName'] . ", " . $value2['typeID']; } }}
EsiPy - Python 2.7 / 3.3+ Swagger Client based on pyswagger for ESI