WoWCenter.pl
wikass zabił Mythrax the Unraveler (Normal Uldir) po raz 2.     
kuturin zdobył 7th Legionnaire's Cuffs.     
Nikandra spełnił kryterium Loot 200,000 gold osiągnięcia Got My Mind On My Money.     
Tooly zdobył Fairweather Helm.     
Muattin zdobył osiągnięcie The Dirty Five.     
Yoozku zdobył Parrotfeather Cloak.     
Mlody89 zdobył Royal Apothecary Drape.     
Weakness zabił Dazar, The First King (Mythic King's Rest) po raz 6.     
liq spełnił kryterium osiągnięcia Saving for a Rainy Day.     
Osiol spełnił kryterium osiągnięcia Saving for a Rainy Day.     
Wuntu zabił Zek'voz, Herald of N'zoth (Heroic Uldir) po raz 1.     
Olsa zabił Vectis (Heroic Uldir) po raz 6.     
Sarenus spełnił kryterium osiągnięcia Saving for a Rainy Day.     
kajtasus zdobył osiągnięcie Come Sail Away.     
ossir spełnił kryterium osiągnięcia Saving for a Rainy Day.     
mcpablo spełnił kryterium Alliance players slain. osiągnięcia Frontline Slayer.     
Emmm zabił Taloc (Heroic Uldir) po raz 17.     
AsaGorth spełnił kryterium Big-Mouth Clam osiągnięcia The Oceanographer.     

Ulminia

new arena and rbg urls?” wysłany:
are there new urls for the rbg and arena info?
api Character profile enchant info ....” wysłany:
could we get an effect api or change the enchant id from the effect is to the spell id? pritty please?
realm/status down?” wysłany:
reciving a 503 error on this resource is it down?
Talents..” wysłany:
so im looking at the new character talent output in the api .. and unless this changes but is there a field for specialization?
The lost API dev's...” wysłany:
Just wondering if thers gona be an update soon for the api with some new stuff.. or even some fixes the last update we got was recipe names.. like .... allmost 2 months ago ..

impatiently yours
ulminia
Any new updates?” wysłany:
hey Api team and Straton .. you guys have any more updates for us ? or timelines on things for us yet? been like 2 weeks since we got any thing shiny and new to play with ....
Fully Formed Item Tooltips?” wysłany:
I know you guys have given us access to the item api but with some info missing in the api call is there any change of getting a fully formed html tooltip for items aswell? if not i can continue to build them on my own, but this would save many actions and processing time..
Code snaps to help you in the api!” wysłany:
so i have neerly finished my php-api and thought id help some people out

this is a function i use to get a well formed url for my script rather then having to code a url all the time i pass bits of data and get a full return


/*
@ui the battle.net region url
@class is the type of data being asked for character,status,team ...
@server wow realm name (url functions removes ' and replaces + with %20 as per blizzard url settings)
@name ither character team or guild names
@fields this is optional data you wana pass along to the url fields or multiple realm names
!q returnd fuly formed url for the api
*/
function BuildUrl($ui,$class,$server,$name,$fields)
{
$name = str_replace('+' , '%20' , urlencode($name));
$server = strtolower(str_replace("\'" , '' ,$server));
$server = str_replace('+' , '%20' , urlencode($server));
switch ($class)
{
case 'character':
// /api/wow/character/{realm}/{name}
$q = 'api/wow/character/'.$server.'/'.$name.$fields['data'].'';
break;

case 'status':
$q = 'api/wow/realm/status?'.$fields['data'].'';
break;

case 'guild':
// /api/wow/guild/{realm}/{name}
$q = 'api/wow/guild/'.$server.'/'.$name.'/'.$fields['data'].'';
break;

case 'team':
// /api/wow/arena/{realm}/{size}/{name} (size being 2v2, 3v3 or 5v5)
$q = 'api/wow/arena/'.$server.'/'.$field['data'].'/'.$name.'';
break;

case 'item':
#api/wow/data/item/38268
$q = 'api/wow/item/'.$name;
break;

case 'gperks':
$q = 'api/wow/data/guild/perks';
break;

case 'gachievments':
$q = 'api/wow/data/guild/perks';
break;

case 'grewards':
$q = 'api/wow/data/guild/rewards';
break;

case 'races':
$q = 'api/wow/data/character/races';
break;

case 'achievement':
$q = 'api/wow/data/achievement/'.$name.'';
break;

default:
$q = '';
break;
}

return $q;
}

Ial continue to post more code to help anyone out
Example of some work with the api” wysłany:
This is my dev site http://www.ulminia.wowroster.net

The page that is up rite now is my characters achievements this is basic info as i have not coded in the cirtera info as of yet
I will be adding more Including Talent trees and Reputation This info is live and not cached yet so it does load slow
Some data is up i guess....” wysłany:
looks like data is comming up lil by lil i dono if its a mistake but with out proper field values most is missing .
One happy programmer” wysłany:
i work over at wowroster.net a site that offers a guild roster solution for players of wow to host data on about there guild and characters. For the longest time i was using xml to retrieve data from the old armory and it was working but now that a json api is being dev'd im psyched!!

i have some questions tho for data
1. Any plan to have talent data accessed trees ranks and info ex icon min max rank and so on
2. is there a bottle neck as to how many request in x amount of time
3. Can i kiss the programmers for doing this for us?

Hopping to see more in the future!