From d83cef0e09c470920aae620f487c34a3409d9bca Mon Sep 17 00:00:00 2001
From: Kyle Drake
+ There are client libraries available for popular programming languages to make it easier to work with the API: +
The NeoCities API is a REST API, which uses query parameters for input, and returns data in the JSON format (except for file downloads). It uses client-side HTTP AUTH to authenticate, using your user/site name and password as the credentials. It is designed to play nicely with the most common HTTP libraries available in programming languages, and can be easily used with cURL (a command-line tool for making HTTP requests you can use by opening a terminal on your computer). @@ -125,4 +134,6 @@ var api = new NeoCities('YOURUSERNAME', 'YOURPASSWORD') api.info('madamfrp', function(resp) { console.log(resp) }) - +
If the API does not supply something you need, contact us and we will try to add it! +