Wiki

Clone wiki

Star Citizen API / Tools

Global Navigation

Local Navigation


Tools

Along with the API to gather raw data, this project includes some working examples of how one can use the API under /tools/.

These server a number of purposes. Primary is that they act as usage examples to demonstrate exactly how to utilize the API. Along with that, they are also working tools that can be consumed as-is by end-users.




User Avatar

This tool returns the actual image used by a specified user on RSI.com. It is accessible via
http://sc-api.com/tools?system=avatar&target_id=siegen
- or -
http://sc-api.com/tools?system=avatar&target_id=siegen.png

Thus, it is usable like this:
<img src="http://sc-api.com/tools?system=avatar&target_id=siegen.png">
and produces
tools




Validate User

This tool checks if a specified user on RSI.com currently exists. It is accessible via
http://sc-api.com/tools?system=validate_user&target_id=siegen


It will return "1" for a valid user and "0" for an invalid one.




Thread Finder

This tool finds the page number and position on that page of a given thread within a given forum on RSI.com. It is accessible via
http://sc-api.com/tools?system=thread_position&target_id=fan-sites&target_id_2=113944


target_id is the ID of the forum in which the thread exists. target_id_2 is the ID of the thread in question.

It will return a JSON encoded array with the page number and position of the thread. It will return false if it could not find the thread.

Updated