> ## Documentation Index
> Fetch the complete documentation index at: https://docs.raydium.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Dapatkan daftar mint default

> Mengambil daftar mint default UI beserta metadata dan logo. Disimpan dalam cache selama 60 detik.



## OpenAPI

````yaml /id/api-reference/openapi/api-v3.yaml get /mint/list
openapi: 3.0.3
info:
  title: Raydium API v3
  version: 3.0.0
  description: >-
    Raydium API v3 menyediakan endpoint REST untuk mengambil data liquidity
    pool, informasi mint, detail farm, IDO pool, dan metadata chain Solana.
    Digunakan oleh wallet, agregator, dan trader untuk mendapatkan feed harga,
    data pool, dan informasi routing.
servers:
  - url: https://api-v3.raydium.io
    description: Produksi (Mainnet)
  - url: https://api-v3-devnet.raydium.io
    description: Pengembangan (Devnet)
security: []
tags:
  - name: Main
    description: Endpoint API inti untuk informasi chain, TVL, dan konfigurasi
  - name: Mint
    description: Informasi mint token dan harga
  - name: Pools
    description: Info liquidity pool, kunci, dan data historis
  - name: Farms
    description: Informasi farm pool dan kunci
  - name: IDO
    description: Informasi IDO pool dan kunci
paths:
  /mint/list:
    get:
      tags:
        - Mint
      summary: Dapatkan daftar mint default
      description: >-
        Mengambil daftar mint default UI beserta metadata dan logo. Disimpan
        dalam cache selama 60 detik.
      operationId: getMintList
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/ApiResponse'
                  - type: object
                    properties:
                      data:
                        $ref: '#/components/schemas/MintListResponse'
components:
  schemas:
    ApiResponse:
      type: object
      description: >-
        Amplop respons umum. Field `data` disediakan oleh skema respons
        masing-masing endpoint melalui `allOf` dan karena itu tidak
        dideklarasikan pada amplop dasar.
      required:
        - id
        - success
      properties:
        id:
          type: string
          description: ID permintaan (UUID)
        success:
          type: boolean
          description: Apakah permintaan berhasil
        msg:
          type: string
          description: Pesan kesalahan jika success bernilai false
    MintListResponse:
      type: object
      properties:
        blockList:
          type: array
          items:
            type: string
        mintList:
          type: array
          items:
            $ref: '#/components/schemas/ApiV3MintItem'
    ApiV3MintItem:
      type: object
      properties:
        chainId:
          type: number
        address:
          type: string
        programId:
          type: string
        logoURI:
          type: string
        symbol:
          type: string
        name:
          type: string
        decimals:
          type: number
        tags:
          type: array
          items:
            type: string
        extensions:
          type: object

````