L

Linode API

by Linode

Introduction The Linode API provides the ability to programmatically manage the full range of Linode products and services. This reference is designed to assist application developers and system administrators. Each endpoint includes descriptions, request syntax, and examples using standard HTT

searchlinode

Quick Reference

Base URL https://api.linode.com/v4 Auth type OAuth 2.0 Auth header Authorization: Bearer <access_token> Rate limit See documentation Pricing from $5/mo Free quota $100 credit for 60 days (new users) Documentation https://linode.com Endpoint status Server online — HTTP 404 — server is online but path returned an error (may require auth)1.15s (checked Mar 29, 2026) Builder score C 60% builder-friendly
Pricing
75
Latency
30
Depth
72

Authentication

OAuth 2.0 — obtain an access token via the authorization flow

Authorization: Bearer <access_token>

Pricing

Model pay-as-you-go Starting price from $5/mo Free quota $100 credit for 60 days (new users)
PlanPrice/moIncluded
Nanode 1GB $5 1 vCPU, 1GB RAM, 25GB SSD
Linode 2GB $10 1 vCPU, 2GB RAM, 50GB SSD
Linode 4GB $20 2 vCPU, 4GB RAM, 80GB SSD

Nanode: $5/mo (1GB RAM). Linode 2GB: $10/mo. Managed: $100/mo/node. Object storage: $5/mo. Block storage: $0.10/GB/mo.

Key Endpoints

MethodPathDescription
GET /account Account View
PUT /account Account Update
POST /account/cancel Account Cancel
POST /account/credit-card Credit Card Add/Edit
GET /account/entity-transfers Entity Transfers List
POST /account/entity-transfers Entity Transfer Create
DELETE /account/entity-transfers/{token} Entity Transfer Cancel
GET /account/entity-transfers/{token} Entity Transfer View

Sample Request

curl -X GET 'https://api.linode.com/v4/account' \
  -H 'Authorization: Bearer <access_token>'

Sample Response

{}

Data sourced from API Map. Always verify pricing and rate limits against the official Linode documentation.