The Token Metadata Object

The Token Metadata Object is the object that represents a tokens metadata on the Pump.fun Trading API. The object contains important information about a Pump.fun token.

Token metadata is immutable and created when the token is created.

The token metadata object used in the API has the following attributes.

Attributes

id

(string)

The mint address, and unique identifier for the token.

name

(string)

The name of the token.

symbol

(string)

The symbol of the token.

uri

(string)

The URI of the token metadata (JSON of the token metadata).

description

(string) nullable

A optional description provided to the token, for your reference.

website

(string) nullable

The website of the token.

image

(string) nullable

The image of the token.

metaFetched

(boolean)

If the token metadata has been fetched from the URI.

Token Metadata Object

{ "id": "0x1234567890123456789012345678901234567890", "name": "My Token", "symbol": "MTK", "uri": "https://example.com/token-metadata.json", "description": "My Token Description", "website": "https://example.com", "image": "https://example.com/image.png", "metaFetched": true, }