Plimver API Reference

Build integrations, automate deployments, and extend Plimver with our REST API.

Base URL

https://plimverai.com/api

Quick Start

Get started with the Plimver API in 3 simple steps:

1

Generate an Access Token

Go to Settings → Access Tokens and create a new token.

2

Make Your First Request

Use your access token in the Authorization header with your team_id:

curl -X GET "https://plimverai.com/api/projects?team_id=your_team_id" \
  -H "Authorization: Bearer plmv_your_access_token"
3

Handle the Response

All responses are in JSON format:

{
  "projects": [
    {
      "id": "proj_abc123",
      "name": "my-website",
      "status": "active",
      "deployment_url": "https://my-website.plimverai.com",
      "team_id": "team_xyz789"
    }
  ]
}