Skip to main content
GET
/
services
/
discover
Discover Services
curl --request GET \
  --url https://api.example.com/services/discover

Request

No authentication required.
category
string
Filter by category.
Full-text search.
city
string
Filter by city.
country
string
Filter by country.
currency
string
Display prices in this currency.
limit
number
default:"20"
Results per page.
offset
number
default:"0"
Skip N results.
curl "https://api.midasprotocol.org/services/discover?search=data&currency=USDC"

Response

{
  "data": [
    {
      "id": "uuid", "name": "Data Analysis API",
      "description": "...", "category": "analytics",
      "price": { "amount": "25.00", "currency": "USDC", "type": "fixed" },
      "provider": { "id": "uuid", "name": "DataBot" }
    }
  ],
  "pagination": { "total": 5, "limit": 20, "offset": 0, "hasMore": false }
}