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

# Pump.fun - New Tokens

> Get the list of new tokens by given exchange. Pump.fun results include only tokens less than 24 hours old. Currently, only Pump.fun is supported.

export const MigrationCallout = ({guide}) => {
  if (!guide) return null;
  const href = `/data-feeds/migration/${guide}`;
  return <div className="migration-callout" style={{
    border: "1px solid var(--mc-border, #c7e9d6)",
    borderRadius: "8px",
    padding: "12px 14px",
    marginBottom: "16px",
    fontSize: "14px",
    lineHeight: "1.6",
    maxWidth: "100%",
    backgroundColor: "var(--mc-bg, #f0faf4)",
    display: "flex",
    alignItems: "baseline",
    gap: "8px"
  }}>
      <style dangerouslySetInnerHTML={{
    __html: `
            .migration-callout {
              --mc-border: #c7e9d6;
              --mc-bg: #f0faf4;
              --mc-text: #1f2937;
            }
            .migration-callout a {
              color: #0e7f4f !important;
              text-decoration: underline;
              font-weight: 600;
            }
            @media (prefers-color-scheme: dark) {
              .migration-callout {
                --mc-border: #1f5138 !important;
                --mc-bg: #102a1d !important;
                --mc-text: #e5e7eb !important;
              }
              .migration-callout a {
                color: #34d399 !important;
              }
            }
            html.dark .migration-callout,
            [data-theme="dark"] .migration-callout {
              --mc-border: #1f5138 !important;
              --mc-bg: #102a1d !important;
              --mc-text: #e5e7eb !important;
            }
            html.dark .migration-callout a,
            [data-theme="dark"] .migration-callout a {
              color: #34d399 !important;
            }
          `
  }} />
      <span style={{
    flexShrink: 0
  }}>{"📦"}</span>
      <span style={{
    color: "var(--mc-text, #1f2937)",
    wordBreak: "break-word"
  }}>
        <strong>Own this data instead.</strong> Move this endpoint onto your own
        infrastructure with <a href={href}>Data Feeds</a> — the same decoded
        onchain dataset, in real time, with no per-call limits.
      </span>
    </div>;
};

export const EndpointMeta = ({premium, cus, cusUnit, mainnetOnly}) => {
  const items = [];
  const planName = typeof premium === "string" ? premium : "Pro";
  if (premium) {
    items.push({
      icon: "\u26a0\ufe0f",
      label: "Premium endpoint",
      text: <>
          Requires the <strong>{planName} plan</strong> or above.{" "}
          <a href="/data-api/introduction/resources/premium-endpoints">
            View all
          </a>
          .
        </>
    });
  }
  if (cus) {
    const isDynamic = !!cusUnit;
    items.push({
      icon: "\u26a1",
      label: isDynamic ? "Dynamic cost" : "Endpoint cost",
      text: isDynamic ? <>
          {cus} CUs per {cusUnit}.{" "}
          <a href="/get-started/pricing#dynamic-endpoints">Learn more</a>.
        </> : <>
          {cus} CUs.{" "}
          <a href="/get-started/pricing">Learn more</a>.
        </>
    });
  }
  if (mainnetOnly) {
    items.push({
      icon: "\ud83d\udd17",
      label: "Mainnet only",
      text: <>Testnet chains are not supported.</>
    });
  }
  if (items.length === 0) return null;
  return <div className="endpoint-meta" style={{
    border: "1px solid var(--border-color, #e2e8f0)",
    borderRadius: "8px",
    overflow: "hidden",
    marginBottom: "16px",
    fontSize: "14px",
    lineHeight: "1.6",
    maxWidth: "100%"
  }}>
      <style dangerouslySetInnerHTML={{
    __html: `
            .endpoint-meta {
              --border-color: #e2e8f0;
              --row-bg: #f8fafc;
              --label-color: #0f172a;
              --text-color: #1f2937;
            }
            .endpoint-meta a {
              color: #0f7fff !important;
              text-decoration: underline;
            }
            @media (prefers-color-scheme: dark) {
              .endpoint-meta {
                --border-color: #374151 !important;
                --row-bg: #1e293b !important;
                --label-color: #f9fafb !important;
                --text-color: #e5e7eb !important;
              }
              .endpoint-meta a {
                color: #60a5fa !important;
              }
            }
            html.dark .endpoint-meta,
            [data-theme="dark"] .endpoint-meta {
              --border-color: #374151 !important;
              --row-bg: #1e293b !important;
              --label-color: #f9fafb !important;
              --text-color: #e5e7eb !important;
            }
            html.dark .endpoint-meta a,
            [data-theme="dark"] .endpoint-meta a {
              color: #60a5fa !important;
            }
          `
  }} />
      {items.map((item, i) => <div key={i} style={{
    display: "flex",
    alignItems: "baseline",
    gap: "8px",
    padding: "10px 14px",
    borderBottom: i < items.length - 1 ? "1px solid var(--border-color, #e2e8f0)" : "none",
    backgroundColor: "var(--row-bg, #f8fafc)"
  }}>
          <span style={{
    flexShrink: 0
  }}>{item.icon}</span>
          <span style={{
    wordBreak: "break-word",
    color: "var(--text-color, #1f2937)"
  }}>
            <strong style={{
    color: "var(--label-color, #0f172a)"
  }}>
              {item.label}:
            </strong>{" "}
            {item.text}
          </span>
        </div>)}
    </div>;
};

<EndpointMeta cus={50} />

<Warning>
  **Deprecated — scheduled for removal on July 31, 2026.** See the [changelog](/changelog) for details and migration guidance.
</Warning>

<MigrationCallout guide="solana-new-tokens-by-exchange" />


## OpenAPI

````yaml openapi-files/data-api/solana-api.json GET /token/{network}/exchange/{exchange}/new
openapi: 3.0.0
info:
  title: Moralis Solana API
  version: '1.0'
servers:
  - url: https://solana-gateway.moralis.io
security: []
paths:
  /token/{network}/exchange/{exchange}/new:
    get:
      tags:
        - Token
      summary: Get new tokens by exchange
      description: Get the list of new tokens by given exchange.
      operationId: getNewTokensByExchange
      parameters:
        - name: network
          required: true
          in: path
          description: The network to query
          schema:
            enum:
              - mainnet
              - devnet
            type: string
        - name: exchange
          required: true
          in: path
          schema:
            type: string
        - name: cursor
          required: false
          in: query
          description: The cursor to the next page
          schema:
            type: string
        - name: limit
          required: false
          in: query
          description: The limit per page
          schema:
            minimum: 1
            maximum: 100
            default: 100
            type: number
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NewTokensResponse'
      deprecated: true
      security:
        - ApiKeyAuth: []
components:
  schemas:
    NewTokensResponse:
      type: object
      properties:
        cursor:
          type: string
          nullable: true
        pageSize:
          type: number
        page:
          type: number
        result:
          type: array
          items:
            $ref: '#/components/schemas/NewTokenDto'
      required:
        - cursor
        - pageSize
        - page
        - result
    NewTokenDto:
      type: object
      properties:
        tokenAddress:
          type: string
        name:
          type: string
          nullable: true
        symbol:
          type: string
          nullable: true
        logo:
          type: string
          nullable: true
        decimals:
          type: string
          nullable: true
        priceNative:
          type: string
          nullable: true
        priceUsd:
          type: string
          nullable: true
        liquidity:
          type: string
          nullable: true
        fullyDilutedValuation:
          type: string
          nullable: true
        createdAt:
          type: string
          nullable: false
          example: '2024-11-28T09:44:55.000Z'
      required:
        - tokenAddress
        - name
        - symbol
        - logo
        - decimals
        - priceNative
        - priceUsd
        - liquidity
        - fullyDilutedValuation
        - createdAt
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Api-Key

````