Our Developers API allows you to make changes to your site remotely with programming languages!
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, which works for node.js and web browsers (via browserify). You can install it by running npm install neocities --global in your terminal.
var NeoCities = require('neocities') var api = new NeoCities('YOURUSERNAME', 'YOURPASSWORD') api.uploadFiles([{ name: 'newfileonsite.html' path: './local.html' }], function(resp) { if(resp.result == 'error') throw new Error(resp.error_type+' - '+resp.message) // Display response from API 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
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": [] } }
$ curl https://YOURUSER:YOURPASS@neocities.org/api/info