Copify API

The Copify API is currently in BETA. Expect changes until we announce v1 is stable!

Our API follows the principles of REST, and aims to allow simple control over the copywriting resources we offer.

The basic premise of REST is that HTTP methods are used to allow CRUD (create, read, update and delete) functionality on a single resource.

A resource can be any one of the many objects available through Copify, for example, a copywriting job.

Example resource

The resource URL can then be used to perform several different CRUD style operations, simply by changing the HTTP method.

  • To create a resource use POST
  • To read a resource use GET
  • To update a resource use PUT
  • To delete a resource use DELETE

Access requires a valid API key. Read more about authentication and api keys.

Formats

At present, all resources are available in JSON format only.

SSL only

All requests to the API must be done over SSL. Any requests over basic HTTP will receive an error.

Rate limiting

There are currently no limits set, we will decide this later. However don't be supprised if your API key stops working if you are hitting us 500 times a second.

Developer support

We want developers and other third parties to be able to build awesome stuff.

If we can help with anything email us: help [at] copify [dot] com.

>> Next: Authentication