EVE Industry XML API

Please check out my Industry Formulas PDF as well.

System Cost Index

Example URL: http://api.eve-industry.org/system-cost-index.xml?name=Osmon

    <?xml version="1.0" encoding="UTF-8"?>
    <eve-industry-api version="1.0" method="system-cost-index">
        <solarsystem id="30000180" name="Osmon">
            <activity id="1" name="Manufacturing">0.057464877494819</activity>
            <activity id="3" name="Researching Time Efficiency">0.070210834649895</activity>
            <activity id="4" name="Researching Material Efficiency">0.0651289886769</activity>
            <activity id="5" name="Copying">0.074019890285887</activity>
            <activity id="7" name="Reverse Engineering">0.0009039207968</activity>
            <activity id="8" name="Invention">0.065483764871702</activity>
            <activity id="11" name="Reactions">0.001</activity>
        </solarsystem>
    </eve-industry-api>

Example Usage

    =IMPORTXML("http://api.eve-industry.org/system-cost-index.xml?name=Jita",
                      "//activity")

    =IMPORTXML("http://api.eve-industry.org/system-cost-index.xml?name=Jita",
                      "//activity[@name='Manufacturing']")

    =IMPORTXML("http://api.eve-industry.org/system-cost-index.xml?name=Jita",
                      "//activity[@id=1]")

    =IMPORTXML("http://api.eve-industry.org/system-cost-index.xml?id=30000180",
                      "//activity[@name='Researching Material Efficiency']")

    =IMPORTXML("http://api.eve-industry.org/system-cost-index.xml?id=30000180",
                      "//activity[@id=4]")


Base Job Installation Costs

Example URL: http://api.eve-industry.org/job-base-cost.xml?names=Aeon,Avatar,Perpetual Motion Unit II&ids=1318,1320

    <?xml version="1.0" encoding="UTF-8"?>
    <eve-industry-api version="1.0" method="job-base-cost">
        <job-base-cost id="1318" name="Expanded Cargohold I Blueprint">1540.3584</job-base-cost>
        <job-base-cost id="1320" name="Expanded Cargohold II Blueprint">123350.4975</job-base-cost>
        <job-base-cost id="23920" name="Aeon Blueprint">20711517508.3822</job-base-cost>
        <job-base-cost id="11568" name="Avatar Blueprint">79048862013.9546</job-base-cost>
        <job-base-cost id="27024" name="Perpetual Motion Unit II Blueprint">487.9338</job-base-cost>
    </eve-industry-api>

Example Usage

    =IMPORTXML("http://api.eve-industry.org/job-base-cost.xml?names=Avatar",
                      "//job-base-cost")

    =IMPORTXML("http://api.eve-industry.org/job-base-cost.xml?names=Avatar,Aeon",
                      "//job-base-cost[@name='Aeon Blueprint']")


Mineral Compression

Example URL: http://api.eve-industry.org/highsec-compression.xml?rate=72.4&tritanium=1211562705&pyerite=211562705&mexallon=77320113&isogen=12421454&nocxium=3527304

    <?xml version="1.0" encoding="UTF-8"?>
    <eve-industry-api version="2.0" method="highsec-compression">
        <Kernite>12803511</Kernite>
        <Omber>0</Omber>
        <Plagioclase>22327752</Plagioclase>
        <Pyroxeres>97439338</Pyroxeres>
        <Scordite>127338576</Scordite>
        <Veldspar>204765833</Veldspar>
    </eve-industry-api>

rate: Effective reprocessing rate as percentage.
Use a quantity of -1 if you don't care about the amount you get for that particular mineral.

Example Usage

    =IMPORTXML("http://api.eve-industry.org/highsec-compression.xml?rate=72.4&tritanium=1211562705",
                      "//eve-industry-api")
                      

For feedback and suggestions, evemail Qoi - using 2023-06-19 Tranquility Datadump

COPYRIGHT NOTICE

EVE Online and the EVE logo are the registered trademarks of CCP hf. All rights are reserved worldwide. All other trademarks are the property of their respective owners. EVE Online, the EVE logo, EVE and all associated logos and designs are the intellectual property of CCP hf. All artwork, screenshots, characters, vehicles, storylines, world facts or other recognizable features of the intellectual property relating to these trademarks are likewise the intellectual property of CCP hf. CCP hf. has granted permission to EVE BPTool to use EVE Online and all associated logos and designs for promotional and information purposes on its website but does not endorse, and is not in any way affiliated with, EVE BPTool. CCP is in no way responsible for the content on or functioning of this website, nor can it be liable for any damage arising from the use of this website.