Quick Start
Get your API keys
Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.
You can generate an API key from your Dashboard at any time.
For security reason, each user will have their own API key in each projects.
user1@email.com
proj1-123
proj2-123
user2@email.com
proj1-456
proj2-456
user3@email.com
proj1-789
proj2-789
Install the library
The best way to interact with our API is to use one of our official libraries:
Make your first request
To make your first request, send an authenticated request to the pets endpoint. This will create a pet
, which is nice.
Create pet.
POST
https://api.myapi.com/v1/pet
Creates a new pet.
Request Body
name*
string
The name of the pet
owner_id
string
The id
of the user who owns the pet
species
string
The species of the pet
breed
string
The breed of the pet
Take a look at how you might call this method using our official libraries, or via curl
:
Last updated