> ## 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.

# Get platforms

> **Legacy endpoint.** Returns the v1 platform list. Superseded by `/campaign/platforms-v2`, which carries the additional fields the front end now relies on. New integrations should call the v2 endpoint.



## OpenAPI

````yaml /api-reference/openapi/launch-mint-v1.yaml get /campaign/platforms
openapi: 3.0.3
info:
  title: Raydium Launch Mint API
  description: >-
    Provides access to mint creation, leaderboards, search, and historical data
    for LaunchLab tokens. Supports searching by name, symbol, wallet creator,
    and various filtering options.
  version: 1.0.0
servers:
  - url: https://launch-mint-v1.raydium.io
    description: Mainnet
  - url: https://launch-mint-v1-devnet.raydium.io
    description: Devnet
security: []
tags:
  - name: Discovery
    description: Search and browse mints
  - name: Details
    description: Retrieve mint information
  - name: User Activity
    description: Get user creation and trading statistics
  - name: Vesting
    description: Query vesting schedule data
  - name: Configuration
    description: Platform configuration and metadata
  - name: Creation
    description: Create new mints and submit transactions
  - name: Utilities
    description: Health checks and status
paths:
  /campaign/platforms:
    get:
      tags:
        - Configuration
      summary: Get platforms
      description: >-
        **Legacy endpoint.** Returns the v1 platform list. Superseded by
        `/campaign/platforms-v2`, which carries the additional fields the front
        end now relies on. New integrations should call the v2 endpoint.
      operationId: getCampaignPlatforms
      responses:
        '200':
          description: Platforms
      deprecated: true

````