Getting an API token

Introduction
The seenode API allows you to start new deployments programmatically, giving you the flexibility to automate and streamline your deployment process. Whether you’re integrating with a CI/CD pipeline or managing infrastructure at scale, the API makes it easy to launch new deployments.
Getting an API token
Login to -> https://seenode.com
Navigate to API section in your profile settings -> https://cloud.seenode.com/dashboard/user#api

Generate a new secret key


Start using API
Now when you have an API key you can try to send a first request our API.
curl -H "Authorization: Bearer <your_token>" https://api.seenode.com/v1/teams
This endpoint returns list of teams you're member in and you should get response like this one:
{
"teams": [
{
"billingThreshold": 200,
"created": "2023-01-27T17:39:16",
"freeTrialAvailable": false,
"freeTrialEnds": null,
"icon": "1",
"id": 961013,
"membersCount": 5,
"name": "seenode",
"servicesLimit": 20
},
{
"billingThreshold": 200,
"created": "2024-07-24T18:28:03",
"freeTrialAvailable": false,
"freeTrialEnds": null,
"icon": "0",
"id": 966739,
"membersCount": 1,
"name": "seenode",
"servicesLimit": 10
},
{
"billingThreshold": 200,
"created": "2024-11-23T14:09:51",
"freeTrialAvailable": false,
"freeTrialEnds": null,
"icon": "3",
"id": 967484,
"membersCount": 1,
"name": "seenode",
"servicesLimit": 10
}
]
}
Last updated