# Featured tokens

Promote your token with premium placement on the TaxSplit homepage.

### GET `/featured`

Get a list of active featured tokens (promoted tokens).

#### Response (`200 OK`)

```json
{
  "featured": [
    {
      "id": "uuid",
      "tokenMint": "TokenMintAddress...",
      "token": {
        "name": "Featured Token",
        "symbol": "FTK",
        "imageUri": "https://ipfs.io/ipfs/QmAbc...",
        "description": "Token description"
      },
      "startsAt": "2024-01-01T12:00:00Z",
      "endsAt": "2024-01-15T12:00:00Z",
      "daysRemaining": 5
    }
  ]
}
```

***

### POST `/featured/create-unsigned`

Create an **unsigned** transaction for a featured promotion purchase.

{% hint style="warning" %}
Requires JWT authentication and the caller must be the **token creator**.
{% endhint %}

#### Request body

```json
{
  "tokenMint": "TokenMintAddress...",
  "durationDays": 7
}
```

#### Response (`200 OK`)

```json
{
  "transaction": "base64_encoded_transaction",
  "promotionId": "uuid",
  "amount": "2.1",
  "expiresAt": "2024-01-01T12:05:00Z"
}
```

{% hint style="info" %}
Cost: **0.3 SOL per day**
{% endhint %}

### Related

* [Tokens](/api-reference/readme/tokens.md)
* [Error handling](/api-reference/readme/error-handling.md)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.taxsplit.app/api-reference/readme/featured-tokens.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
