Search API

Search orders and other dashboard resources with FonProxy's unified search endpoint.

Updated 2026-04-09 16:13:00
Search API

For authentication headers, API keys, and common error format see API General.

Search Resources Auth required

GET /search

Unified search across the user's dashboard resources. Currently searches orders β€” designed to be extended with more types (transactions, IPs, etc.).

Searches order fields: name, ID, proxy username, proxy password, proxy type, status.

Query Parameters

NameTypeDescriptionRequired
qstringSearch query (min 2 chars)Yes
limitnumberMax results (default 10, max 50)No

Response

{
  "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

NameTypeDescription
typestringResource type (order, more in future)
idstringID of the resource
namestringDisplay name (order name or ID fallback)
descriptionstringSummary line (type Β· status Β· count/traffic)
meta.proxyTypeobjectid, name, paymentModel, unit
meta.priceobjecttotalUsd, totalDisplay, currency
meta.statusstringOrder status

Returns { "results": [] } when the query is empty or shorter than 2 characters.

Dashboard Search API β€” Unified Resource Search | FonProxy