Quickstart

This guide will get you all set up and ready to use the VaporCMS API. We'll cover how to get started using one of our API and how to make your first API request. We'll also look at where to go next to find all the information you need to take full advantage of our powerful REST API and JavaScript Client.

Making your first API request

After creating your API Key, you are ready to make your first call to the VaporCMS API. Below, you can see how to send a GET request to the articles endpoint to get a list of all your articles. In the cURL example, results are limited to ten articles, the default page length.

GET
/v0/:blogId/articles
curl -G https://api.vaporcms.com/v0/{blogId}/articles \
  -H "Authorization: Bearer {token}"

What's next?

Great, now that you've made your first request to the API, here are a few links that might be handy as you venture further into the VaporCMS API:

Was this page helpful?