Skip to main content
POST
/
agencies
/
list
Get Agency List
curl --request POST \
  --url https://api.boosterberg.com-beta.com/v1/agencies/list \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "search": "California",
  "service": "1",
  "industry": "1"
}
'
[
  {
    "username": "Lounge Lizard Worldwide",
    "description": "<string>",
    "about": "<string>",
    "image": "<string>",
    "website": "<string>",
    "locations": "<string>",
    "services": [
      [
        "E-commerce",
        "Branding"
      ]
    ],
    "industries": [
      [
        "Retail",
        "Healthcare"
      ]
    ],
    "gps": "40.730610,-73.935242",
    "employess": "11-50",
    "coordinates": "48.148598,17.107748"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Search in Location or Name

Example:

"California"

service
integer
Example:

"1"

industry
integer
Example:

"1"

Response

200 - application/json

Returns List of Agency Objects

username
string
Example:

"Lounge Lizard Worldwide"

description
string
about
string
image
string<uri>
website
string<uri>
locations
string
services
string[]
industries
string[]
gps
string
Example:

"40.730610,-73.935242"

employess
string
Example:

"11-50"

coordinates
string
Example:

"48.148598,17.107748"