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).
That's a lot of buzz words if you're new to programming. Don't worry, it's easier than it sounds! We'll walk you through some working examples you can get started with.
Uploads files to your site. You can upload as many files as you want with a single query, as long as the entire request stays within the disk space limit. The parameter name should be the name of the file, with the extension so we know what kind of file it is (index.html).
Upload a single local file (local.html), which will be named hello.html on your site:
$ curl -F hello.html=@local.html https://USER:PASS@neocities.org/api/upload
This example uses the neocities module. You can install it by running npm install neocities --global in your terminal.
var NeoCities = require('neocities') var api = new NeoCities('YOURUSERNAME', 'YOURPASSWORD') api.upload([ {name: 'hello.html', path: './local.html'} ], function(resp) { console.log(resp) })
Deletes files from your site. Provide a filenames argument with an array of filenames you wish to delete. You can delete any files except index.html.
Be careful with this API call. There is no way to undo a delete!
Delete img1.jpg and img2.jpg from your site:
curl -d "filenames[]=img1.jpg" -d "filenames[]=img2.jpg" \
https://YOURUSER:YOURPASS@neocities.org/api/delete
var NeoCities = require('neocities') var api = new NeoCities('YOURUSERNAME', 'YOURPASSWORD') api.delete(['img1.jpg', 'img2.jpg'], function(resp) { console.log(resp) })
This call lets you retreive information about a web site. This call does not require site authorization if you provide a sitename argument. Note that the sitename is the same as a username. If you provide auth credentials, you will receive the info for the auth user's site. Dates conform to RFC2822 format, and there are helpers for parsing it into a time object for most programming languages.
$ curl https://neocities.org/api/info?sitename=youpi { "result": "success", "info": { "sitename": "youpi", "hits": 5072, "created_at": "Sat, 29 Jun 2013 10:11:38 +0000", "last_updated": "Tue, 23 Jul 2013 20:04:03 +0000", "domain": null, "tags": [] } }
Getting your own site's info:
$ curl https://YOURUSER:YOURPASS@neocities.org/api/info
Your site:
var NeoCities = require('neocities') var api = new NeoCities('YOURUSERNAME', 'YOURPASSWORD') api.info(function(resp) { console.log(resp) })
Getting data for a different site - such as the Madam FRP Manual:
var NeoCities = require('neocities') 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!