# Linode API **Provider:** Linode **Category:** search **Base URL:** `https://api.linode.com/v4` **Auth:** oauth2 — `Authorization: Bearer ` **Rate Limit:** See documentation **Free Tier:** No **Pricing:** from $5/mo (pay-as-you-go) **Docs:** https://linode.com ## Description 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 ## Endpoints | Method | Endpoint | Description | |--------|----------|-------------| | GET | `https://api.linode.com/v4/account` | Account View | | PUT | `https://api.linode.com/v4/account` | Account Update | | POST | `https://api.linode.com/v4/account/cancel` | Account Cancel | | POST | `https://api.linode.com/v4/account/credit-card` | Credit Card Add/Edit | | GET | `https://api.linode.com/v4/account/entity-transfers` | Entity Transfers List | | POST | `https://api.linode.com/v4/account/entity-transfers` | Entity Transfer Create | | DELETE | `https://api.linode.com/v4/account/entity-transfers/{token}` | Entity Transfer Cancel | | GET | `https://api.linode.com/v4/account/entity-transfers/{token}` | Entity Transfer View | ## Authentication OAuth 2.0 — obtain an access token via the authorization flow ``` Authorization: Bearer ``` ## Sample Request ```bash curl -X GET 'https://api.linode.com/v4/account' \ -H 'Authorization: Bearer ' ``` ## Sample Response ```json {} ``` ## Pricing Details Nanode: $5/mo (1GB RAM). Linode 2GB: $10/mo. Managed: $100/mo/node. Object storage: $5/mo. Block storage: $0.10/GB/mo. --- *Source: [API Map](https://apimap.dev/apis/linode/) — CC BY 4.0*