> For the complete documentation index, see [llms.txt](https://noodles-finance.gitbook.io/docs.noodles.fi/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://noodles-finance.gitbook.io/docs.noodles.fi/accounts/historical-created-coins-by-address.md).

# Account's Historical Created Coins

Retrieve a historical coin list created by a specific creator address. This endpoint returns detailed information about coins that were created by the specified creator address, including token metadata, supply information, and social links.

## Endpoint

```
GET /api/v1/partner/coin/created-by-address
```

## Parameters

### Request Parameters

| Name      | Type   | Required | Description                                                                |
| --------- | ------ | -------- | -------------------------------------------------------------------------- |
| `address` | string | Yes      | The creator address to query for created coins.                            |
| `limit`   | number | No       | Maximum number of records to return. Default: `20`.                        |
| `offset`  | number | No       | Number of records to skip before starting to return results. Default: `0`. |

## Headers

| Header      | Required | Description                |
| ----------- | -------- | -------------------------- |
| `x-api-key` | Yes      | API key for authorization. |

## cURL Example

```bash
curl --location 'https://api.noodles.fi/api/v1/partner/coin/created-by-address?address=0x44d8e303b7baabf00e4cdb89e6c7196fd5c69abece9041f90e7525e547ef6ea2&limit=20&offset=0' \
--header 'Accept-Encoding: application/json' \
--header 'x-api-key: YOUR_API_KEY' \
```

## Response

### Success Response Example

```json
{
    "code": 200,
    "message": "OK",
    "data": [
        {
            "coin_type": "0x30f887cc127222230fe2b81c57b48c0a76da37fc8d817166dbdbd85a9ed63cbe::suncat::SUNCAT",
            "name": "Sui Cat",
            "symbol": "SunCat",
            "decimals": 6,
            "logo": "https://statics.noodles.fi/logo/10131952366806563413.png",
            "total_supply": 10000000000,
            "circulating_supply": 10000000000,
            "creator": "0x44d8e303b7baabf00e4cdb89e6c7196fd5c69abece9041f90e7525e547ef6ea2",
            "coin_category_group": "Meme",
            "published_at": "2024-09-08T04:16:09Z",
            "description": "The original cat-themed meme coin on the Sui blockchain! As the first of its kind,  When it comes to cat coins on Sui, were the trailblazers setting the trend. Get in on the ground floor with Sui Cat and be part of the OG cat coin revolution!",
            "social": {
                "website": "https://suicat.fun/"
            },
            "verified": false
        },
        {
            "coin_type": "0x0bffc4f0333fb1256431156395a93fc252432152b0ff732197e8459a365e5a9f::suicat::SUICAT",
            "name": "SUI CAT",
            "symbol": "SUICAT",
            "decimals": 6,
            "logo": "https://statics.noodles.fi/logo/14973323781478121507.png",
            "total_supply": 10000000000,
            "circulating_supply": 10000000000,
            "creator": "0x44d8e303b7baabf00e4cdb89e6c7196fd5c69abece9041f90e7525e547ef6ea2",
            "coin_category_group": "Meme",
            "published_at": "2024-09-08T07:14:05Z",
            "description": "The original cat-themed meme coin on the Sui blockchain! As the first of its kind, When it comes to cat coins on Sui, were the trailblazers setting the trend. Get in on the ground floor with Sui Cat and be part of the OG cat coin revolution!\n\n",
            "social": {
                "twitter": "https://x.com/SuiCatcoin",
                "telegram": "https://t.me/suicatportal",
                "website": "https://suicat.fun/"
            },
            "verified": true
        }
    ],
    "pagination": {
        "offset": 0,
        "limit": 10
    }
}
```

### Fields

| Field        | Type   | Nullable | Description             |
| ------------ | ------ | -------- | ----------------------- |
| `code`       | number | No       | HTTP status code.       |
| `message`    | string | No       | Response message.       |
| `data`       | array  | No       | List of coin objects.   |
| `pagination` | object | No       | Pagination information. |

### Coin Object

| Field                 | Type   | Nullable | Description                                     |
| --------------------- | ------ | -------- | ----------------------------------------------- |
| `coin_type`           | string | No       | Unique identifier of the coin.                  |
| `name`                | string | No       | Full name of the coin.                          |
| `symbol`              | string | No       | Token symbol.                                   |
| `decimals`            | number | No       | Number of decimal places for the token.         |
| `logo`                | string | Yes      | URL to the token's logo image.                  |
| `total_supply`        | number | No       | Total token supply.                             |
| `circulating_supply`  | number | No       | Circulating token supply.                       |
| `creator`             | string | No       | Address of the coin creator.                    |
| `published_at`        | string | No       | ISO 8601 timestamp when the coin was published. |
| `description`         | string | Yes      | Description of the coin.                        |
| `coin_category_group` | string | Yes      | Category group of the coin.                     |
| `social`              | object | No       | Social media links for the coin.                |
| `verified`            | bool   | No       | Whether the coin is verified.                   |

### Social Object

| Field      | Type   | Nullable | Description                 |
| ---------- | ------ | -------- | --------------------------- |
| `twitter`  | string | Yes      | Twitter/X profile URL.      |
| `telegram` | string | Yes      | Telegram group/channel URL. |
| `discord`  | string | Yes      | Discord server URL.         |
| `website`  | string | Yes      | Official website URL.       |

### Pagination Object

| Field    | Type   | Nullable | Description                                |
| -------- | ------ | -------- | ------------------------------------------ |
| `offset` | number | No       | Number of records skipped.                 |
| `limit`  | number | No       | Maximum number of records in the response. |

***

> **See also:** [Environment Setup](/docs.noodles.fi/environment-setup/environment.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://noodles-finance.gitbook.io/docs.noodles.fi/accounts/historical-created-coins-by-address.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
