Houdini Swap
  • 🔎Overview: Your Crypto Privacy Guide
  • 🪜STANDARD SWAPS
    • ▪️Wallet Connect
    • ▪️Manual Send
  • 🧙PRIVATE SWAPS
    • ▪️Private Mode
    • ▪️Use Monero
    • ▪️Private Transaction Data
  • ❓FAQs
    • ▫️Do I have to connect my wallet?
    • ▫️How do I find my order details?
    • ▫️What should I do if my transaction shows 'Order Expired' after sending?
    • ▫️What happens if I accidentally sent the wrong currency?
    • ▫️Are Private Swaps truly private?
    • ▫️What KYC and AML requirements are there?
    • ▫️Are Private Swaps compliant?
    • ▫️Is Houdini Swap a crypto mixer?
    • ▫️Staking Program
      • How does $LOCK relate to Houdini Swap?
      • How does Houdini Swap’s Staking Program work?
      • How are staking rewards calculated?
      • How do I unstake?
      • Who receives the rewards from the Withdrawal Penalty?
      • How is Annual Percentage Yield (APY) calculated?
  • 🪙TOKENOMICS
    • ▪️LOCK Token
    • ▪️$LOCK Distribution
    • ▪️$LOCK Staking and Burns
  • 🔒STAKING PROGRAM
  • ☎️CONTACT US
    • ▪️User Support
    • ▪️Partnership Enquiries
  • 📚NOTICES
    • ▪️Privacy Notice
    • ▪️Terms of Service
    • ▪️Compliance Policy
  • 📃WHITEPAPER
    • ▪️Vision & Purpose
    • ▪️Current Landscape
    • ▪️Private Transactions
      • ▫️Semi-Private Transactions
      • ▫️Houdini DEX
    • ▪️Transaction Types
    • ▪️Platform Functions
      • ▫️Why It Works
    • ▪️Integrations
    • ▪️Compliance
    • ▪️Data Retention Policy
    • ▪️Fee Structure
    • ▪️Staking Program
      • ▫️Deflationary Mechanics
      • ▫️Rewards Distribution
      • ▫️Dynamic Rewards
      • ▫️Withdrawal Options
      • ▫️Penalty Distribution
      • ▫️Buybacks and Staking Flow
  • 🐛BUG BOUNTY PROGRAM
  • 💾API DOCUMENTATION
    • Get CEX Tokens API
    • Get DEX Tokens API
    • Get CEX Quote API
    • Get DEX Quote API
    • Post dexApprove API
    • Post dexConfirmTx API
    • Post CEX Exchange API
    • Post DEX Exchange API
    • Get Status API
    • Get Min-Max API
    • Get Volume API
    • Get WeeklyVolume API
    • Changelog
Powered by GitBook
On this page
  • Endpoint: GET /dexTokens
  • Example Request:
  • Example Response:
  1. API DOCUMENTATION

Get DEX Tokens API

Fetches a paginated list of tokens available for DEX trading, with details such as address, chain, decimals, and DEX availability.

PreviousGet CEX Tokens APINextGet CEX Quote API

Last updated 2 months ago

Endpoint: GET /dexTokens

Response: A JSON object containing details.

Parameters:

Name
Type
Location
Description
Default
Example

page

number

query

Page number

1

1

pageSize

number

query

Number of tokens per page

100

100

chain

string

query

Chain short name (e.g., base)

(none)

base

Example Request:

GET /dexTokens?page=1&pageSize=100&chain=base

Example Response:

{
  "count": 1,
  "tokens": [
    {
      "id": "66cf5512ba629b6c861a7f45",
      "address": "0xE3086852A4B125803C815a158249ae468A3254Ca",
      "chain": "base",
      "decimals": 18,
      "symbol": "mfer",
      "name": "mfer",
      "created": "2024-08-28T16:49:22.854Z",
      "modified": "2024-09-04T13:42:03.030Z",
      "enabled": true,
      "hasDex": true
    }
  ]
}

Response Fields:

Field
Type
Description

id

string

Unique identifier for the token.

address

string

Blockchain address of the token.

chain

string

The chain on which the token exists (e.g., base).

decimals

number

Number of decimal places the token uses.

symbol

string

Token symbol (e.g., mfer).

name

string

Full name of the token.

created

string

Timestamp of when the token was added (ISO 8601 format).

modified

string

Timestamp of the last modification (ISO 8601 format).

enabled

boolean

Whether the token is enabled for use.

hasDex

boolean

Indicates if the token supports DEX trading.

💾
Token