> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.trygrant.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.trygrant.com/_mcp/server.

# List plan fees

GET https://api.trygrant.com/v1/plans/{id}/fees

Returns the fixed and usage-based fees attached to a plan. Pass active=true to only include fees effective right now.

Reference: https://docs.trygrant.com/api-reference/grant-events-api/plan-fees/list-fees

## Authentication

- `Authorization` header (bearer token, required) — API key obtained from the Grant dashboard

## Servers

- `https://api.trygrant.com` (Production, default)
- `http://localhost:8787` (Local development)

## Request

### Path parameters

- `id` (string, required)

### Query parameters

- `active` (enum, optional) — When true, only fees effective at the current time
  - Allowed values: `true`, `false`

## Response

### 200

Plan fees

- `success` (boolean, required)
- `fees` (list of object, required)
  - `id` (string, required)
  - `plan_id` (string, required)
  - `product` (object, required)
    - `id` (string, required)
    - `name` (string, required)
  - `price` (object, required)
    - `id` (string, required)
    - `pricing_model` (enum, required) — flat = fixed recurring/one-time fee, per_unit = usage-based rate, cost_plus = underlying cost with markup
      - Allowed values: `flat`, `per_unit`, `cost_plus`
    - `amount` (double, required) — Amount in minor units of the denomination (e.g. cents) charged per `denominator` units
    - `denominator` (integer, required) — Number of usage units the amount applies to
    - `billing_mode` (enum, required)
      - Allowed values: `in_advance`, `in_arrears`
    - `cadence` (enum, required) — Billing cadence for flat fees; null for usage-based prices
      - Allowed values: `monthly`, `quarterly`, `yearly`, `one_time`
    - `currency_code` (string, required, nullable) — Currency denomination; null when the price is denominated in a pricing unit
    - `pricing_unit_id` (string, required, nullable) — Pricing unit (custom credit) denomination; null when denominated in currency
    - `display_denominator` (string, required, nullable) — Optional display label for the denominator (e.g. "1M tokens")
    - `cost_plus` (object, required, nullable) — Markup configuration for cost_plus prices
      - `markup_mode` (enum, required)
        - Allowed values: `multiplier`, `target_margin`
      - `multiplier` (double, required, nullable) — Cost multiplier, e.g. 1.2 bills 120% of cost
      - `target_margin` (double, required, nullable) — Target margin between 0 and 1, e.g. 0.3 for 30%
  - `effective_from` (string, required, nullable) — ISO 8601 timestamp the fee becomes effective
  - `effective_to` (string, required, nullable) — ISO 8601 timestamp the fee stops being effective
- `request_id` (string, required)

## Examples

**Response**

```json
{
  "success": true,
  "fees": [
    {
      "id": "cm5x9z8nv0005h85r7l9p2k6m",
      "plan_id": "cm5x9z8nv0000h85r7l9p2k1m",
      "product": {
        "id": "cm5x9z8nv0004h85r7l9p2k5m",
        "name": "Platform fee"
      },
      "price": {
        "id": "cm5x9z8nv0003h85r7l9p2k4m",
        "pricing_model": "flat",
        "amount": 5000,
        "denominator": 1,
        "billing_mode": "in_advance",
        "cadence": "monthly",
        "currency_code": "usd",
        "pricing_unit_id": null,
        "display_denominator": null,
        "cost_plus": {
          "markup_mode": "multiplier",
          "multiplier": 1.2,
          "target_margin": null
        }
      },
      "effective_from": null,
      "effective_to": null
    }
  ],
  "request_id": "req_abc123"
}
```

**SDK Code**

```typescript
import { AfternoonClient } from "grant-sdk";

async function main() {
    const client = new AfternoonClient({
        token: "YOUR_TOKEN_HERE",
    });
    await client.plans.listFees({
        id: "cm5x9z8nv0000h85r7l9p2k1m",
    });
}
main();

```

```python
import requests

url = "https://api.trygrant.com/v1/plans/cm5x9z8nv0000h85r7l9p2k1m/fees"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.json())
```

```go
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.trygrant.com/v1/plans/cm5x9z8nv0000h85r7l9p2k1m/fees"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("Authorization", "Bearer <token>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://api.trygrant.com/v1/plans/cm5x9z8nv0000h85r7l9p2k1m/fees")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://api.trygrant.com/v1/plans/cm5x9z8nv0000h85r7l9p2k1m/fees")
  .header("Authorization", "Bearer <token>")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://api.trygrant.com/v1/plans/cm5x9z8nv0000h85r7l9p2k1m/fees', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("https://api.trygrant.com/v1/plans/cm5x9z8nv0000h85r7l9p2k1m/fees");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <token>");
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = ["Authorization": "Bearer <token>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://api.trygrant.com/v1/plans/cm5x9z8nv0000h85r7l9p2k1m/fees")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```