> ## Documentation Index
> Fetch the complete documentation index at: https://storeinspect.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# List taxonomy

> Returns valid filter values and display labels for store search, contact search, and enrichment workflows.



## OpenAPI

````yaml /openapi.json get /taxonomy
openapi: 3.1.0
info:
  title: StoreInspect API
  version: 1.0.0
  description: >-
    Database-backed Shopify store and contact intelligence API. V1 access
    requires a paid StoreInspect plan.
servers:
  - url: https://storeinspect.com/api/v1
security: []
tags:
  - name: usage
    x-displayName: Usage
    x-group: Usage
    description: >-
      API access state, request quotas, search-row quota, and shared
      contact-credit usage.
  - name: taxonomy
    x-displayName: Taxonomy
    x-group: Taxonomy
    description: >-
      Filter values, labels, and metadata used by store and contact search
      requests.
  - name: stores
    x-displayName: Stores
    x-group: Stores
    description: >-
      Store lookup, store search, and batch domain enrichment for Shopify
      accounts.
  - name: contacts
    x-displayName: Contacts
    x-group: Contacts
    description: Contact preview search and credit-based contact reveal workflows.
paths:
  /taxonomy:
    get:
      tags:
        - taxonomy
      summary: List taxonomy
      description: >-
        Returns valid filter values and display labels for store search, contact
        search, and enrichment workflows.
      operationId: getTaxonomy
      responses:
        '200':
          description: Taxonomy values for filters and display names.
        '401':
          description: Missing or invalid API key.
        '403':
          description: The account does not have API access.
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: StoreInspect API key

````