YeeSuan APIyeesuan.com ↗
Access YeeSuan (易算云) cloud computing catalog via API. Search HPC/AI software apps, list hardware products, and retrieve solution strategies in structured JSON.
What is the YeeSuan API?
The YeeSuan API exposes 3 endpoints covering the full catalog of the YeeSuan (易算云) cloud computing platform: scientific and AI software applications, hardware products with specifications and pricing, and solution strategies. The search_apps endpoint alone returns fields including application name, pricing, and usage statistics, and supports keyword filtering by app name like 'VASP' or 'DeepSeek' with paginated results.
curl -X GET 'https://api.parse.bot/scraper/4a15d346-d7db-409b-bdfc-d4db60caf5e6/search_apps?app_name=VASP' \ -H 'X-API-Key: $PARSE_API_KEY'
Search computing software applications in the app store. Returns paginated results with application details including name, pricing, and usage statistics. Supports keyword search by application name. When page_num and page_size are omitted, defaults to page 1 with 20 results per page.
| Param | Type | Description |
|---|---|---|
| app_name | string | Search keyword to filter applications by name (e.g. 'VASP', 'DeepSeek'). Omitting returns all apps. |
| page_num | integer | Page number for pagination, starting at 1. |
| page_size | integer | Number of results per page (1-50). |
{
"type": "object",
"fields": {
"items": "Array of application objects",
"total": "Total number of matching applications",
"page_num": "Current page number",
"page_size": "Results per page"
},
"sample": {
"data": {
"items": [
{
"id": "3d6c49d6-bde5-11ef-842f-424291b3bb36",
"price": "0.0000",
"status": "1",
"app_code": "VASP-6.3.0(不含license)",
"app_name": "VASP-6.3.0(不含license)",
"app_type": "1",
"logo_url": "https://oss.yeesuan.com/profile/1688019919069.png",
"subtitle": "原子尺度材料模拟的计算机程序包...",
"bill_type": "standalone",
"field_code": null,
"field_name": null,
"help_doc_url": "https://www.yeesuan.com/doc/zh/...",
"citation_times": 5527,
"purchase_times": 129
}
],
"total": 6,
"page_num": 1,
"page_size": 5
},
"status": "success"
}
}About the YeeSuan API
App Store Search
The search_apps endpoint queries the YeeSuan application catalog and returns a paginated list of computing software. Key inputs are app_name (a keyword string to filter by name), page_num, and page_size (1–50 results per page, defaulting to page 1 with 20 results). Each item in the items array includes application name, pricing details, and usage statistics. The total field lets you know how many matching apps exist across all pages, making it straightforward to implement full pagination loops.
Hardware Product Catalog
The list_products endpoint returns the complete hardware product catalog in a single response — no pagination required. The products array contains objects with specs, pricing, and usage statistics for each computing power product. The total field confirms the count of visible products. This endpoint is suited for building comparisons of GPU nodes, CPU clusters, or other hardware offerings available on the platform.
Solution Strategies
The list_solutions endpoint retrieves all published solution plans in one call. The solutions array covers areas including software optimization, AI computing, HPC, parallel computing, and industry-specific applications. The total field reflects the number of active solutions. Together with the other two endpoints, this gives a complete programmatic view of what the YeeSuan platform currently offers across software, hardware, and service dimensions.
The YeeSuan API is a managed, monitored endpoint for yeesuan.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when yeesuan.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.
This isn't an official yeesuan.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Build a searchable directory of HPC and AI software tools available on the YeeSuan app store using
search_appswith keyword filters like 'VASP' or 'DeepSeek'. - Automate hardware product comparisons by pulling specs and pricing from
list_productsinto a custom dashboard. - Monitor the YeeSuan app catalog for new entries by tracking changes in the
totalfield fromsearch_appsover time. - Aggregate solution strategy descriptions from
list_solutionsto map platform coverage across HPC, AI, and parallel computing domains. - Populate an internal procurement tool with cloud computing hardware options and their usage statistics from
list_products. - Index YeeSuan's scientific software offerings (e.g., computational chemistry or simulation tools) for a research team's software selection workflow.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 200 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 100 req/min |
| Team | $300/mo | 20,000 | 300 req/min |
| Company | $1,000/mo | 100,000 | 500 req/min |
Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does YeeSuan have an official public developer API?+
How does `search_apps` handle filtering and pagination?+
app_name string to filter results by application name — for example, 'VASP' or 'DeepSeek'. Omitting app_name returns all apps. Use page_num (starting at 1) and page_size (1–50) to page through results. The response always includes total, page_num, and page_size alongside the items array so you can calculate how many pages remain.Does the API expose individual application detail pages, such as full feature descriptions or user reviews?+
search_apps endpoint returns name, pricing, and usage statistics per application but not extended feature descriptions or user reviews. You can fork this API on Parse and revise it to add an endpoint that retrieves per-application detail pages.Are solution and product listings filterable by category or keyword?+
list_solutions and list_products return full catalogs in a single unfiltered call. Filtering must be done client-side on the returned arrays. You can fork this API on Parse and revise it to add category or keyword filter parameters to those endpoints.