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

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

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

Last updated