Insight block explorer is constantly timing out, any chance you could fix it?
Or point me to another api that would list difficulties by each algo

Hi, please send a link to the Insight block explorer.
I've never heard of this but I came across this from bitpay :
https://github.com/bitpay/insightAre you talking about modifying the above project to work with the multiple algorithm difficulties we have in DGC
Please clarify your request.
Getting the difficulty on each algorithm is easy via RPC call to the wallet, here's how it's done :
RPC Command : getmininginfo
Returns :
{
"blocks" : 1341189,
"currentblocksize" : 1000,
"currentblocktx" : 0,
"pow_algo_id" : 1,
"pow_algo" : "scrypt",
"difficulty" : 50.16523440,
"difficulty_sha256d" : 298174.07876389,
"difficulty_scrypt" : 50.16523440,
"difficulty_x11" : 10.15654692,
"errors" : "",
"genproclimit" : -1,
"networkhashps" : 1534007685,
"pooledtx" : 0,
"testnet" : false,
"generate" : false,
"hashespersec" : 0
}
Out of the above, these will be of interest to you :
Default (Scrypt) "difficulty" : 50.16523440,
"difficulty_sha256d" : 298174.07876389,
"difficulty_scrypt" : 50.16523440,
"difficulty_x11" : 10.15654692,
Let me know if this isn't what you're taking about and send links please.