« Previous - Version 4/18 (diff) - Next » - Current version
vl, 04/10/2009 11:40 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=1224Z0Z1728C7C7');
echo "Name: ".$xml->name;
?>

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

Name: Dday

Real Examples