« Previous - Version 5/18 (diff) - Next » - Current version
vl, 04/10/2009 11:41 am


Character

Base URL

http://atys.ryzom.com/characters/index.php

Syntax

  • key: the API key for the character

Errors

  • E2: Bad API key
  • E4: Character is not found

Update Frequency

The profile is updated every hour.

PHP Example

<?
$xml = simplexml_load_file('http://atys.ryzom.com/characters/index.php?key=<apikey>');
echo "Name: ".$xml->name;
?>

will display the name of the character.

Real Examples