ESI / GESI failing to understand how to get all of an item's attributes

Down there trying to make a spreadsheet to help me calculate which ores I should buy to build a selection of T1 ships.

I’m very new to ESI and even if I have some knowledge I’m not an IT person.

So from what I’m reading on the ESI doc, everything there’s to know about an item should be referenced in the dogma_attributes object.

However this seems to lack some critical informations when calling /universe/type/type_ID. Namely, I can’t find the reprocessed material output of a compressed ore, nor the required materials of a blueprint.

I’m guessing this isn’t the right endpoint for the job but I fail to find documentation on how to get those basic informations.

Thank you for your time o/

Pretty sure this data just isn’t in ESI. See Feature GET Request: Receive reprocessing informations of items · Issue #664 · esi/esi-issues · GitHub and Add blueprint manufacturing/research to industry endpoints · Issue #501 · esi/esi-issues · GitHub.

You’ll just have to use the SDE for this.

Yes, that makes sense. Why would they waste processing power for requests above static things ?

Looks like there’s a CSV on Fuzzwork, I’ll try to get things going from there.

Some things are indeed missing from SDE/ESI. Have a look also at Hoboleaks (https://sde.hoboleaks.space).

The list of materials that go into a blueprint can be found in the SDE in the blueprints file. For example, the Rifter Blueprint entry has:

{
   "691":{
      "activities":{
         "copying":{
            "time":4800
         },
         "invention":{
            "materials":[
               {
                  "quantity":2,
                  "typeID":20172
               },
               {
                  "quantity":2,
                  "typeID":20424
               }
            ],
            "products":[
               {
                  "probability":0.3,
                  "quantity":1,
                  "typeID":11372
               },
               {
                  "probability":0.3,
                  "quantity":1,
                  "typeID":11401
               }
            ],
            "skills":[
               {
                  "level":1,
                  "typeID":11445
               },
               {
                  "level":1,
                  "typeID":11452
               },
               {
                  "level":1,
                  "typeID":21791
               }
            ],
            "time":63900
         },
         "manufacturing":{
            "materials":[
               {
                  "quantity":32000,
                  "typeID":34
               },
               {
                  "quantity":6000,
                  "typeID":35
               },
               {
                  "quantity":2500,
                  "typeID":36
               },
               {
                  "quantity":500,
                  "typeID":37
               }
            ],
            "products":[
               {
                  "quantity":1,
                  "typeID":587
               }
            ],
            "skills":[
               {
                  "level":1,
                  "typeID":3380
               }
            ],
            "time":6000
         },
         "research_material":{
            "time":2100
         },
         "research_time":{
            "time":2100
         }
      },
      "blueprintTypeID":691,
      "maxProductionLimit":30
   }
}

Reprocessing data can be seen in the typeMaterials file, also in SDE:

"1230":{"materials":[{"materialTypeID":34,"quantity":400}],"typeID":"1230"}
"17471":{"materials":[{"materialTypeID":34,"quantity":440}],"typeID":"17471"}

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.