Surprise! We've been running on hardware provided by BuyVM for a few months and wanted to show them a little appreciation.
Running a paste site comes with unique challenges, ones that aren't always obvious and hard to control. As such, BuyVM offered us a home where we could worry less about the hosting side of things and focus on maintaining a clean and useful service! Go check them out and show them some love!

The API was made incredibly simple to use from any language.

You should send a POST request to http://paste.ee/api or https://paste.ee/api with the following fields:

  • key
  • description
  • language (Optional)
  • paste
  • encrypted (Optional, default '0', this will make it so that it isn't syntax highlighted via GeSHi in the paste view page)
  • expire (Optional, default 0, valid expiration time in MINUTES, maximum 1 month, or 'views;' for expiration after )
  • format (See API:Formats)

The API Endpoint determines whether the supplied like will be normal http or https.

A successful response will return data like this:

JSON

{
	"paste":{
		"id":"AbCDe",
		"link":"http://paste.ee/p/AbCDe",
		"raw":"http://paste.ee/r/AbCDe",
		"download":"http://paste.ee/d/AbCDe",
		"min":"http://min.paste.ee/d/AbCDe"
	},
	"status":"success"
}

XML

<?xml version="1.0" encoding="UTF-8"?>
<response>
	<status>success</status>
	<paste>
		<id>AbCDe</id>
		<link>http://paste.ee/p/AbCDe</link>
		<raw>http://paste.ee/r/AbCDe</raw>
		<download>http://paste.ee/d/AbCDe</download>
		<min>http://min.paste.ee/AbCDe</min>
	</paste>
</response>

While a failed response will return data like this:

JSON

{
   "errorcode":1,
   "error":"no_key",
   "status":"error"
}

XML

<?xml version="1.0" encoding="UTF-8"?>
<response>
	<status>error</status>
	<errorcode>1</errorcode>
	<error>error_no_key</error>
</response>

The errorcode can be used in place of error For the full list of error codes, see API:Errors

Last modified on February 7, 2017 at 11:15:50 am