Skip to main content
GET
/
categories
/
{category_id}
/
suggestions
Suggested additional categories
curl --request GET \
  --url https://api.partoo.co/v2/categories/{category_id}/suggestions \
  --header 'x-APIKey: <api-key>'
{
  "categories": [
    {
      "id": 7984,
      "gmb_id": "gcid:atm",
      "name": "ATM",
      "state": "OK",
      "block_push_long_description_on_gmb": false,
      "live_id": null
    },
    {
      "id": 4917,
      "gmb_id": "gcid:savings_bank",
      "name": "Savings bank",
      "state": "OK",
      "block_push_long_description_on_gmb": false,
      "live_id": null
    },
    {
      "id": 5742,
      "gmb_id": "gcid:home_insurance_agency",
      "name": "Home insurance agency",
      "state": "OK",
      "block_push_long_description_on_gmb": false,
      "live_id": null
    },
    {
      "id": 6678,
      "gmb_id": "gcid:auto_insurance_agency",
      "name": "Auto insurance agency",
      "state": "OK",
      "block_push_long_description_on_gmb": false,
      "live_id": null
    },
    {
      "id": 5520,
      "gmb_id": "gcid:life_insurance_agency",
      "name": "Life insurance agency",
      "state": "OK",
      "block_push_long_description_on_gmb": false,
      "live_id": null
    },
    {
      "id": 5339,
      "gmb_id": "gcid:motorcycle_insurance_agency",
      "name": "Motorcycle insurance agency",
      "state": "OK",
      "block_push_long_description_on_gmb": false,
      "live_id": null
    },
    {
      "id": 7133,
      "gmb_id": "gcid:insurance_agency",
      "name": "Insurance agency",
      "state": "OK",
      "block_push_long_description_on_gmb": false,
      "live_id": null
    },
    {
      "id": 7012,
      "gmb_id": "gcid:investment_service",
      "name": "Investment service",
      "state": "OK",
      "block_push_long_description_on_gmb": false,
      "live_id": null
    },
    {
      "id": 6026,
      "gmb_id": "gcid:financial_consultant",
      "name": "Financial consultant",
      "state": "OK",
      "block_push_long_description_on_gmb": false,
      "live_id": null
    }
  ]
}

Authorizations

x-APIKey
string
header
required

The authentication system on Partoo API is using API Key that should be put in the header of the request (the name of the header is x-APIKey). An api_key is linked to a user. This user's role will give you different access level to the API features.

Path Parameters

category_id
required

Category id or Google's category id

Example:

"5706 or gcid:bank"

Query Parameters

lang
enum<string>

Language to get the category name. If not given, the user's language is used.

Available options:
fr,
en,
es,
it,
pt-br,
de,
ar,
nl,
pl,
cs,
ca,
sk,
pt,
lv,
ro,
bg,
hu
Example:

"fr"

Response

OK

categories
object[]
Example:
[
{
"id": 7984,
"gmb_id": "gcid:atm",
"name": "ATM",
"state": "OK",
"block_push_long_description_on_gmb": false,
"live_id": null
},
{
"id": 4917,
"gmb_id": "gcid:savings_bank",
"name": "Savings bank",
"state": "OK",
"block_push_long_description_on_gmb": false,
"live_id": null
},
{
"id": 5742,
"gmb_id": "gcid:home_insurance_agency",
"name": "Home insurance agency",
"state": "OK",
"block_push_long_description_on_gmb": false,
"live_id": null
},
{
"id": 6678,
"gmb_id": "gcid:auto_insurance_agency",
"name": "Auto insurance agency",
"state": "OK",
"block_push_long_description_on_gmb": false,
"live_id": null
},
{
"id": 5520,
"gmb_id": "gcid:life_insurance_agency",
"name": "Life insurance agency",
"state": "OK",
"block_push_long_description_on_gmb": false,
"live_id": null
},
{
"id": 5339,
"gmb_id": "gcid:motorcycle_insurance_agency",
"name": "Motorcycle insurance agency",
"state": "OK",
"block_push_long_description_on_gmb": false,
"live_id": null
},
{
"id": 7133,
"gmb_id": "gcid:insurance_agency",
"name": "Insurance agency",
"state": "OK",
"block_push_long_description_on_gmb": false,
"live_id": null
},
{
"id": 7012,
"gmb_id": "gcid:investment_service",
"name": "Investment service",
"state": "OK",
"block_push_long_description_on_gmb": false,
"live_id": null
},
{
"id": 6026,
"gmb_id": "gcid:financial_consultant",
"name": "Financial consultant",
"state": "OK",
"block_push_long_description_on_gmb": false,
"live_id": null
}
]