> 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.

# Create a credit pack checkout link

POST https://api.trygrant.com/v1/credit-pack-checkout-links
Content-Type: application/json

Creates a 24-hour checkout link for an existing subscription and credit pack. The credit pack must belong to the subscription plan.

Reference: https://docs.trygrant.com/api-reference/grant-events-api/credit-packs/create-checkout-link

## 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

### Body (application/json)

- `subscription_id` (string, required) — Subscription that will receive the credits
- `credit_pack_id` (string, required) — Credit pack to purchase
- `quantity` (double, optional, nullable) — Fixed quantity to purchase. Omit or pass null to let the customer choose.
- `success_url` (string, optional, nullable) — HTTP or HTTPS URL to redirect to after a successful purchase
- `back_url` (string, optional, nullable) — HTTP or HTTPS URL used when the customer leaves checkout

## Response

### 201

Checkout link created

- `success` (boolean, required)
- `credit_pack_checkout_link` (object, required)
  - `id` (string, required)
  - `subscription_id` (string, required)
  - `credit_pack_id` (string, required)
  - `quantity` (string, required, nullable) — Fixed quantity, or null when the customer may choose
  - `url` (string, required) — Checkout URL to send to the customer
  - `token_expiration` (string, required) — ISO 8601 expiration timestamp for the checkout link
  - `success_url` (string, required, nullable)
  - `back_url` (string, required, nullable)
  - `status` (string, required)
  - `created_at` (string, required) — ISO 8601 creation timestamp
- `request_id` (string, required)

## Examples

**Request**

```json
{
  "subscription_id": "cm5x9z8nv0009h85r7l9p2l0m",
  "credit_pack_id": "cm5x9z8nv0011h85r7l9p2l2m"
}
```

**Response**

```json
{
  "success": true,
  "credit_pack_checkout_link": {
    "id": "cm5x9z8nv0012h85r7l9p2l3m",
    "subscription_id": "cm5x9z8nv0009h85r7l9p2l0m",
    "credit_pack_id": "cm5x9z8nv0011h85r7l9p2l2m",
    "quantity": "2500",
    "url": "https://www.trygrant.com/purchase/example-token",
    "token_expiration": "2026-08-07T12:00:00.000Z",
    "success_url": "https://example.com/billing/success",
    "back_url": "https://example.com/billing",
    "status": "pending",
    "created_at": "2026-08-06T12:00:00.000Z"
  },
  "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.creditPacks.createCheckoutLink({
        subscriptionId: "cm5x9z8nv0009h85r7l9p2l0m",
        creditPackId: "cm5x9z8nv0011h85r7l9p2l2m",
    });
}
main();

```

```python
import requests

url = "https://api.trygrant.com/v1/credit-pack-checkout-links"

payload = {
    "subscription_id": "cm5x9z8nv0009h85r7l9p2l0m",
    "credit_pack_id": "cm5x9z8nv0011h85r7l9p2l2m"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.json())
```

```go
package main

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

func main() {

	url := "https://api.trygrant.com/v1/credit-pack-checkout-links"

	payload := strings.NewReader("{\n  \"subscription_id\": \"cm5x9z8nv0009h85r7l9p2l0m\",\n  \"credit_pack_id\": \"cm5x9z8nv0011h85r7l9p2l2m\"\n}")

	req, _ := http.NewRequest("POST", url, payload)

	req.Header.Add("Authorization", "Bearer <token>")
	req.Header.Add("Content-Type", "application/json")

	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/credit-pack-checkout-links")

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

request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n  \"subscription_id\": \"cm5x9z8nv0009h85r7l9p2l0m\",\n  \"credit_pack_id\": \"cm5x9z8nv0011h85r7l9p2l2m\"\n}"

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.post("https://api.trygrant.com/v1/credit-pack-checkout-links")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"subscription_id\": \"cm5x9z8nv0009h85r7l9p2l0m\",\n  \"credit_pack_id\": \"cm5x9z8nv0011h85r7l9p2l2m\"\n}")
  .asString();
```

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

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://api.trygrant.com/v1/credit-pack-checkout-links', [
  'body' => '{
  "subscription_id": "cm5x9z8nv0009h85r7l9p2l0m",
  "credit_pack_id": "cm5x9z8nv0011h85r7l9p2l2m"
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

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

```csharp
using RestSharp;

var client = new RestClient("https://api.trygrant.com/v1/credit-pack-checkout-links");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"subscription_id\": \"cm5x9z8nv0009h85r7l9p2l0m\",\n  \"credit_pack_id\": \"cm5x9z8nv0011h85r7l9p2l2m\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "subscription_id": "cm5x9z8nv0009h85r7l9p2l0m",
  "credit_pack_id": "cm5x9z8nv0011h85r7l9p2l2m"
] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "https://api.trygrant.com/v1/credit-pack-checkout-links")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

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()
```