The RIPEstat Data API is the public data interface for RIPEstat. It is the only data source for the RIPEstat widgets.

URL

The basic URL for requesting data is:

https://stat.ripe.net/data/<name>/data.json?param1=value1&param2=value2&...

and to get metadata for a data call, including its methodology:

https://stat.ripe.net/data/<name>/meta

Where:

Note: Data call URLs previously began with /plugin/. This will keep working for the forseable future, but /data/ should now be preferred.

Using data calls

Common Request Parameters

To support JSON-P all RIPEstat Data API calls support a "callback" parameter. This parameter can be set to the name of the Javascript function that will be called, with the output data as its argument.

name part of cache key? acceptable values default value? description
callback no - - JSON-P callback
preferred_version yes version of the data call e.g. 0.1 current stable version If the desired version is not available we try to return a version that is matching the major version (e.g. "0" for "0.3"). Use the meta information of a data call to retrieve all available versions, see "Getting metadata for a data call".

Magic version tags supported:
  • "supported" - returns the currently supported version
  • "upcoming" - returns the version that is either a development version and/or a candidate for the next supported version
  • "deprecated" - this will explicitly return a deprecated version
cache - "ignore" - Bypasses and refreshes the cache when set to "ignore". Note that this should only be used when the results of a data call are stale.
Temporarily disabled!

Rules of Usage

These are the rules for the usage of the data API:

Regular Usage

If you are using the API on a regular basis you can use the "sourceapp" parameter to provide a unique identifier to every data call. This identifier helps us to assist you when you encounter any problems with the system. The identifier can be your project name or your company's.

Please drop us a short mail to stat@ripe.net with the identifier and an email address on which we can reach you. (If you include the purpose of the lookups, gold membership support is awaiting you :-)

https://stat.ripe.net/data/<datacallname>/data.json?resource=AS3333&sourceapp=<YourId>

For the format please just use alphanumeric values with no whitespace and no special characters expect for hyphens and underscores.

E.g. sourceapp=ripestat-cybersecurity-research, sourceapp=my_ripestat_id, sourceapp=as3333RIPEstat, etc.

Output Data Structure

The resulting data has a key=>value structure. Each data call has its own output fields, which are detailed in the individual sections. The common fields that are provided by every call are:

key type value
status string Indicates the status of the result of the data call. Possible values are "ok" for a successful query, "error" for unsuccessful query and "maintenance" in case the data call is undergoing maintenance. In case of an error see the messages field for details.
status_code integer Same as the HTTP status code. In case of server errors the HTTP status code will be set appropriately.
data_call_status string Indicates the status of the data call.
Possible values:
  • supported
    This data call is meant to be stable and without bugs. Any bugs reported will be fixed asap.
  • deprecated(usually provided with an expiration date)
    This data call is meant to be deprecated and is about to be removed either by the expiration date or soon.
    PLEASE CHECK ON THIS FLAG REGULARLY IF YOU WANT TO HAVE A RELIABLE SOURCE OF DATA!
  • development
    This data call is currently work in progress and to be considered to change or discontinued without notice. This guarantees that we can incorporate user feedback in the most efficient way - so bug reports are highly welcome!
data_call_name string Holds the name of the data call; this is useful for our team and when only the API output is available in a support request.
version string major.minor version of the response layout for this particular data call. New minor versions are backwards compatible, new major versions are not.
cached boolean True/False
message string human readable message if there was an error during processing.
process_time string Time it took to process the request, in millisecons. If for some reason the time could not be determined then its value is "not available".
data

The data itself.

Data Overload Prevention

The data overload prevention is to protect users, especially widgets, from getting more data than they can handle. For this reason some data calls already support a soft-limit check which returns a warning if the output looks to be more than usual.

This prevention mechanism should only kick in if the request stems from a browser (the referrer header set), but in case it happens for a non-browser request, it can easily suppressed by the "data_overload_limit" parameter set to "ignore".

https://stat.ripe.net/data/<datacallname>/data.json?resource=AS3333&data_overload_limit=ignore

Getting metadata for a data call

A meta request returns additional information about a data call. A simple request to

https://stat.ripe.net/data/<name>/meta

will return the list of currently supported meta calls, like:

As with a Data API call it's possible to wrap the result into an JSON-P request by appending the "callback" URL parameter, e.g. for methodology

https://stat.ripe.net/data/<name>/meta/methodology?callback=callOnSuccess

Note on SSL

Although it's still possible to use the RIPEstat Data API on a non-secure connection (ordinary HTTP) we strongly encourage using https. If there's a reason for you why you can't use HTTPS at all, please inform us since we will disable HTTP in the near future.