Status

This Ryzom API displays if game servers (shards) are open or closed.

Base URL

URL Parameters

format (optional)

Default format is raw.

  • raw: Returns the shard status in a raw format (one line per shard and pipe | to separate the values) (example).
  • xml: Returns an xml file that contains shard status (example).

Cache Duration

There's no cache, it's in real time. Each time you make a request, you'll have the current server status.

PHP Interface

ryzom_status_array()

Returns a php array containing all information about shard status.

Status code:
  • 0 = CLOSED
  • 1 = OPEN
  • 2 = RESTRICTED

Example:

Array
(
    [0] => Array
        (
            [shardid] => ani
            [shard] => Aniro
            [status] => 1
        )

    [1] => Array
        (
            [shardid] => lea
            [shard] => Leanon
            [status] => 1
        )

    [2] => Array
        (
            [shardid] => ari
            [shard] => Arispotle
            [status] => 1
        )

)

Real Examples

If you have a website that use this Ryzom API, tell it in the forum and we'll add it.