« Previous - Version 3/18 (diff) - Next » - Current version
vl, 04/10/2009 11:39 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?uid=65&slotid=1');
echo "Name: ".$xml->name;
?>

will display the name of the second character of the user id 65:

Name: Dday

Real Examples