DexScan New Pairs Scraper avatar
DexScan New Pairs Scraper

Pricing

Pay per event

Go to Store
DexScan New Pairs Scraper

DexScan New Pairs Scraper

Developed by

Muhammet Akkurt

Maintained by Community

DexScan New Pairs Scraper monitors newly created cryptocurrency token pairs across Solana, Ethereum, BNB Smart Chain, Base, Blast. This Apify actor lets you filter pairs by age, liquidity, volume, and security metrics—enabling crypto investors to discover early-stage tokens with detailed market data

5.0 (1)

Pricing

Pay per event

2

Monthly users

4

Runs succeeded

>99%

Last modified

22 days ago

You can access the DexScan New Pairs Scraper programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1{
2  "openapi": "3.0.1",
3  "info": {
4    "version": "0.0",
5    "x-build-id": "6bSxZ7bkKElI7Clit"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/muhammetakkurtt~dexscan-new-pairs-scraper/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-muhammetakkurtt-dexscan-new-pairs-scraper",
16        "x-openai-isConsequential": false,
17        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
18        "tags": [
19          "Run Actor"
20        ],
21        "requestBody": {
22          "required": true,
23          "content": {
24            "application/json": {
25              "schema": {
26                "$ref": "#/components/schemas/inputSchema"
27              }
28            }
29          }
30        },
31        "parameters": [
32          {
33            "name": "token",
34            "in": "query",
35            "required": true,
36            "schema": {
37              "type": "string"
38            },
39            "description": "Enter your Apify token here"
40          }
41        ],
42        "responses": {
43          "200": {
44            "description": "OK"
45          }
46        }
47      }
48    },
49    "/acts/muhammetakkurtt~dexscan-new-pairs-scraper/runs": {
50      "post": {
51        "operationId": "runs-sync-muhammetakkurtt-dexscan-new-pairs-scraper",
52        "x-openai-isConsequential": false,
53        "summary": "Executes an Actor and returns information about the initiated run in response.",
54        "tags": [
55          "Run Actor"
56        ],
57        "requestBody": {
58          "required": true,
59          "content": {
60            "application/json": {
61              "schema": {
62                "$ref": "#/components/schemas/inputSchema"
63              }
64            }
65          }
66        },
67        "parameters": [
68          {
69            "name": "token",
70            "in": "query",
71            "required": true,
72            "schema": {
73              "type": "string"
74            },
75            "description": "Enter your Apify token here"
76          }
77        ],
78        "responses": {
79          "200": {
80            "description": "OK",
81            "content": {
82              "application/json": {
83                "schema": {
84                  "$ref": "#/components/schemas/runsResponseSchema"
85                }
86              }
87            }
88          }
89        }
90      }
91    },
92    "/acts/muhammetakkurtt~dexscan-new-pairs-scraper/run-sync": {
93      "post": {
94        "operationId": "run-sync-muhammetakkurtt-dexscan-new-pairs-scraper",
95        "x-openai-isConsequential": false,
96        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
97        "tags": [
98          "Run Actor"
99        ],
100        "requestBody": {
101          "required": true,
102          "content": {
103            "application/json": {
104              "schema": {
105                "$ref": "#/components/schemas/inputSchema"
106              }
107            }
108          }
109        },
110        "parameters": [
111          {
112            "name": "token",
113            "in": "query",
114            "required": true,
115            "schema": {
116              "type": "string"
117            },
118            "description": "Enter your Apify token here"
119          }
120        ],
121        "responses": {
122          "200": {
123            "description": "OK"
124          }
125        }
126      }
127    }
128  },
129  "components": {
130    "schemas": {
131      "inputSchema": {
132        "type": "object",
133        "required": [
134          "chain",
135          "limit"
136        ],
137        "properties": {
138          "chain": {
139            "title": "Blockchain",
140            "enum": [
141              "solana",
142              "ethereum",
143              "bnb-smart-chain-bep20",
144              "base",
145              "blast"
146            ],
147            "type": "string",
148            "description": "Blockchain platform to scrape data from",
149            "default": "solana"
150          },
151          "limit": {
152            "title": "Token Limit",
153            "minimum": 0,
154            "type": "integer",
155            "description": "Maximum number of tokens to scrape (enter 0 to scrape all tokens)",
156            "default": 200
157          },
158          "age": {
159            "title": "Age",
160            "enum": [
161              "1",
162              "3",
163              "6",
164              "12",
165              "24"
166            ],
167            "type": "string",
168            "description": "Maximum age of pairs",
169            "default": "24"
170          },
171          "liquidity": {
172            "title": "Liquidity",
173            "enum": [
174              "any",
175              "1k",
176              "5k",
177              "10k",
178              "50k",
179              "100k",
180              "250k",
181              "500k",
182              "1m"
183            ],
184            "type": "string",
185            "description": "Minimum liquidity value",
186            "default": "1k"
187          },
188          "volume": {
189            "title": "Volume",
190            "enum": [
191              "any",
192              "1k",
193              "5k",
194              "10k",
195              "50k",
196              "100k",
197              "250k",
198              "500k",
199              "1m"
200            ],
201            "type": "string",
202            "description": "Minimum volume value",
203            "default": "any"
204          },
205          "securityScan": {
206            "title": "EVM Security Scan",
207            "type": "array",
208            "description": "Security checks to filter (for Ethereum, BSC, Base and Blast)",
209            "items": {
210              "type": "string",
211              "enum": [
212                "honeypot",
213                "verified",
214                "renounced",
215                "locked"
216              ],
217              "enumTitles": [
218                "Honeypot Check",
219                "Contract Verified",
220                "Contract Renounced",
221                "Locked Liquidity"
222              ]
223            },
224            "default": []
225          },
226          "solanaSecurityScan": {
227            "title": "Solana Security Scan",
228            "type": "array",
229            "description": "Security checks to filter (for Solana only)",
230            "items": {
231              "type": "string",
232              "enum": [
233                "mint_auth_disabled",
234                "freeze_disabled"
235              ],
236              "enumTitles": [
237                "Mint Auth Disabled",
238                "Freeze Disabled"
239              ]
240            },
241            "default": []
242          }
243        }
244      },
245      "runsResponseSchema": {
246        "type": "object",
247        "properties": {
248          "data": {
249            "type": "object",
250            "properties": {
251              "id": {
252                "type": "string"
253              },
254              "actId": {
255                "type": "string"
256              },
257              "userId": {
258                "type": "string"
259              },
260              "startedAt": {
261                "type": "string",
262                "format": "date-time",
263                "example": "2025-01-08T00:00:00.000Z"
264              },
265              "finishedAt": {
266                "type": "string",
267                "format": "date-time",
268                "example": "2025-01-08T00:00:00.000Z"
269              },
270              "status": {
271                "type": "string",
272                "example": "READY"
273              },
274              "meta": {
275                "type": "object",
276                "properties": {
277                  "origin": {
278                    "type": "string",
279                    "example": "API"
280                  },
281                  "userAgent": {
282                    "type": "string"
283                  }
284                }
285              },
286              "stats": {
287                "type": "object",
288                "properties": {
289                  "inputBodyLen": {
290                    "type": "integer",
291                    "example": 2000
292                  },
293                  "rebootCount": {
294                    "type": "integer",
295                    "example": 0
296                  },
297                  "restartCount": {
298                    "type": "integer",
299                    "example": 0
300                  },
301                  "resurrectCount": {
302                    "type": "integer",
303                    "example": 0
304                  },
305                  "computeUnits": {
306                    "type": "integer",
307                    "example": 0
308                  }
309                }
310              },
311              "options": {
312                "type": "object",
313                "properties": {
314                  "build": {
315                    "type": "string",
316                    "example": "latest"
317                  },
318                  "timeoutSecs": {
319                    "type": "integer",
320                    "example": 300
321                  },
322                  "memoryMbytes": {
323                    "type": "integer",
324                    "example": 1024
325                  },
326                  "diskMbytes": {
327                    "type": "integer",
328                    "example": 2048
329                  }
330                }
331              },
332              "buildId": {
333                "type": "string"
334              },
335              "defaultKeyValueStoreId": {
336                "type": "string"
337              },
338              "defaultDatasetId": {
339                "type": "string"
340              },
341              "defaultRequestQueueId": {
342                "type": "string"
343              },
344              "buildNumber": {
345                "type": "string",
346                "example": "1.0.0"
347              },
348              "containerUrl": {
349                "type": "string"
350              },
351              "usage": {
352                "type": "object",
353                "properties": {
354                  "ACTOR_COMPUTE_UNITS": {
355                    "type": "integer",
356                    "example": 0
357                  },
358                  "DATASET_READS": {
359                    "type": "integer",
360                    "example": 0
361                  },
362                  "DATASET_WRITES": {
363                    "type": "integer",
364                    "example": 0
365                  },
366                  "KEY_VALUE_STORE_READS": {
367                    "type": "integer",
368                    "example": 0
369                  },
370                  "KEY_VALUE_STORE_WRITES": {
371                    "type": "integer",
372                    "example": 1
373                  },
374                  "KEY_VALUE_STORE_LISTS": {
375                    "type": "integer",
376                    "example": 0
377                  },
378                  "REQUEST_QUEUE_READS": {
379                    "type": "integer",
380                    "example": 0
381                  },
382                  "REQUEST_QUEUE_WRITES": {
383                    "type": "integer",
384                    "example": 0
385                  },
386                  "DATA_TRANSFER_INTERNAL_GBYTES": {
387                    "type": "integer",
388                    "example": 0
389                  },
390                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
391                    "type": "integer",
392                    "example": 0
393                  },
394                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
395                    "type": "integer",
396                    "example": 0
397                  },
398                  "PROXY_SERPS": {
399                    "type": "integer",
400                    "example": 0
401                  }
402                }
403              },
404              "usageTotalUsd": {
405                "type": "number",
406                "example": 0.00005
407              },
408              "usageUsd": {
409                "type": "object",
410                "properties": {
411                  "ACTOR_COMPUTE_UNITS": {
412                    "type": "integer",
413                    "example": 0
414                  },
415                  "DATASET_READS": {
416                    "type": "integer",
417                    "example": 0
418                  },
419                  "DATASET_WRITES": {
420                    "type": "integer",
421                    "example": 0
422                  },
423                  "KEY_VALUE_STORE_READS": {
424                    "type": "integer",
425                    "example": 0
426                  },
427                  "KEY_VALUE_STORE_WRITES": {
428                    "type": "number",
429                    "example": 0.00005
430                  },
431                  "KEY_VALUE_STORE_LISTS": {
432                    "type": "integer",
433                    "example": 0
434                  },
435                  "REQUEST_QUEUE_READS": {
436                    "type": "integer",
437                    "example": 0
438                  },
439                  "REQUEST_QUEUE_WRITES": {
440                    "type": "integer",
441                    "example": 0
442                  },
443                  "DATA_TRANSFER_INTERNAL_GBYTES": {
444                    "type": "integer",
445                    "example": 0
446                  },
447                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
448                    "type": "integer",
449                    "example": 0
450                  },
451                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
452                    "type": "integer",
453                    "example": 0
454                  },
455                  "PROXY_SERPS": {
456                    "type": "integer",
457                    "example": 0
458                  }
459                }
460              }
461            }
462          }
463        }
464      }
465    }
466  }
467}

DexScan New Pairs Scraper OpenAPI definition

OpenAPI is a standard for designing and describing RESTful APIs, allowing developers to define API structure, endpoints, and data formats in a machine-readable way. It simplifies API development, integration, and documentation.

OpenAPI is effective when used with AI agents and GPTs by standardizing how these systems interact with various APIs, for reliable integrations and efficient communication.

By defining machine-readable API specifications, OpenAPI allows AI models like GPTs to understand and use varied data sources, improving accuracy. This accelerates development, reduces errors, and provides context-aware responses, making OpenAPI a core component for AI applications.

You can download the OpenAPI definitions for DexScan New Pairs Scraper from the options below:

If you’d like to learn more about how OpenAPI powers GPTs, read our blog post.

You can also check out our other API clients:

Pricing

Pricing model

Pay per event 

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Actor start

$0.01

Charge when the actor starts running

Each Page Scrape

$0.002

Charge for each page scraping

Token Data Scraped

$0.001

Charged for each individual token data item successfully retrieved and saved to the dataset.

Actor Completion

$0.01

Charge when all processes are successfully completed.