Quick Start

Get your API keys

Our API is authenticated using API keys. Any request that doesn't include an API key will return an error.

To get your API key, go to the "Settings" page from the upper-right menu. In the left, you shall see an "API" tab. There you can copy your API token.

Install the library

The best way to interact with our API is to use one of our official libraries:

# Install via NPM
npm install --save socialsplash

Create your first image

To make your first image, you can directly To make your first request, send an authenticated request to the pets endpoint. This will create a pet, which is nice.

Take a look at how you might call this method using our official libraries, or via curl:

curl https://api.socialsplash.app/me/images  
    -u YOUR_API_KEY:  
    -d title='My example'  
    -d description='This is an example description'

Last updated