GET
/
list
/
tags
curl --request GET \
  --url https://api.shovels.ai/v2/list/tags \
  --header 'X-API-Key: <api-key>'
{
  "items": [
    {
      "id": "new_dwelling",
      "description": "New Dwelling"
    },
    {
      "id": "new_adu",
      "description": "New Apartment Unit"
    },
    {
      "id": "accessory_structure",
      "description": "Accessory Structure"
    },
    {
      "id": "pool_spa",
      "description": "Pool or Spa"
    },
    {
      "id": "room_addition",
      "description": "Room Addition"
    },
    {
      "id": "kitchen_remodel",
      "description": "Kitchen Remodel"
    },
    {
      "id": "bath_remodel",
      "description": "Bath Remodel"
    },
    {
      "id": "solar",
      "description": "Solar Panels"
    },
    {
      "id": "reroof",
      "description": "Reroofing"
    },
    {
      "id": "utilities",
      "description": "Utility"
    },
    {
      "id": "window_door",
      "description": "Window or Door Repair"
    }
  ],
  "page": 1,
  "size": 50,
  "next_page": 2
}

Authorizations

X-API-Key
string
header
required

Query Parameters

page
integer
default:1
Required range: x >= 1
size
integer
default:50
Required range: 1 <= x <= 100

Response

200
application/json
A list of available permit tags
items
object[]
required

The list of items returned in the response following given criteria.

page
integer
required

The page number of the response.

size
integer
required

The number of items returned in the response.

next_page
integer | null
required

The next page number of the response.