Search API
FonProxy Search API reference documentation.
FonProxy API β Search
Requires
Authorization: Bearer <token>.
Dashboard Search
GET /search?q=<query>&limit=10
Unified search across the user's dashboard resources. Currently searches orders β designed to be extended with more types (transactions, IPs, etc.).
Query parameters:
| Param | Type | Default | Description |
|---|---|---|---|
q | string | required | Search query (min 2 chars) |
limit | number | 10 | Max results (max 50) |
Searches order fields: name, hashId, proxy username, proxy password, proxy type, status.
Response (200):
{
"results": [
{
"type": "order",
"id": "xK9mR2pL1w",
"name": "My US Proxies",
"description": "Private Proxy Β· active Β· 10 IPs",
"meta": {
"proxyType": {
"id": "private-proxy",
"name": "Private Proxy",
"paymentModel": "prepaid",
"unit": "ip"
},
"price": {
"totalUsd": 15.00,
"totalDisplay": 620.00,
"currency": "UAH"
},
"status": "active"
}
}
]
}
Result fields:
| Field | Type | Description |
|---|---|---|
type | string | Resource type (order, more in future) |
id | string | HashId of the resource |
name | string | Display name (order name or hashId fallback) |
description | string | Summary line (type Β· status Β· count/traffic) |
meta.proxyType | object | id, name, paymentModel, unit |
meta.price | object | totalUsd, totalDisplay, currency |
meta.status | string | Order status |
Empty / short query:
{ "results": [] }