Developers

Avero API

A REST API over your CRM data — deals, persons, organizations, activities and notes. Build your own integrations, sync your stack, automate your pipeline.

Create an API key

Search

Cross-resource search over deals, persons, organizations, activities and notes, ranked by relevance.

GET/api/v1/search40 TOKENS
Search

Searches all resources (or a subset) and returns matches ranked by similarity to the term.

NameInTypeDescription
term *querystringSearch term, min 2 characters.
resourcesquerystringComma-separated subset: deals,persons,organizations,activities,notes. Default all.
limitqueryintegerMax results. Default 20, max 50.
Request
curl -X GET "https://app.averocrm.com/api/v1/search" \
  -H "x-api-token: $AVERO_API_TOKEN"
Response
{
  "success": true,
  "data": [
    {
      "resource": "deals",
      "id": "9b2f7e34-1c5d-4a8e-b7f0-3d2a6c9e8f10",
      "title": "Horvat–Marin wedding — 40-room block",
      "snippet": "40 rooms · June 2027",
      "score": 0.62
    },
    {
      "resource": "organizations",
      "id": "7c1e5a90-2b4f-4d3c-9e8a-6f0b1d2c3e4a",
      "title": "Northwind Software",
      "snippet": "Zagreb, Croatia",
      "score": 0.58
    }
  ],
  "additional_data": null
}