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

Page number

Required range: x >= 1
size
integer
default:50

Number of items per page

Required range: 1 <= x <= 100

Response

200
application/json

A list of available permit tags

The response is of type object.