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

  1. Navigate to API section in your profile settings -> https://cloud.seenode.com/dashboard/user#api

  1. Generate a new secret key

For security reasons, your API key is only visible at the time it's being generated. Make sure to copy and store it securely because you won't be able to view it again.

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