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

# List webpages by tag

> Returns all webpages associated with the specified tag. The tag must belong to the authenticated user's account and the tags feature must be enabled.



## OpenAPI

````yaml /openapi.json get /api/v1/tags/{tag}/urls
openapi: 3.0.3
info:
  title: WebOrion Monitor API
  description: >-
    REST API for managing webpages, alerts, batch jobs, and activity logs in
    WebOrion Defacement Monitor.
  version: '2021-07-26'
servers:
  - url: https://api.monitor.weborion.io
security:
  - bearerAuth: []
tags:
  - name: User
    description: Operations related to user accounts
  - name: Webpages
    description: Operations related to webpages and URLs
  - name: Batch Jobs
    description: Operations related to batch baseline and rebaseline jobs
  - name: Alerts
    description: Operations related to alerts
  - name: Domains
    description: Operations related to domains
  - name: Tags
    description: Operations related to tags for organising webpages
paths:
  /api/v1/tags/{tag}/urls:
    get:
      tags:
        - Tags
        - Webpages
      summary: List webpages by tag
      description: >-
        Returns all webpages associated with the specified tag. The tag must
        belong to the authenticated user's account and the tags feature must be
        enabled.
      operationId: listUrlsByTag
      parameters:
        - in: path
          name: tag
          schema:
            type: string
          required: true
          description: Tag ID
      responses:
        '200':
          description: OK — returns an array of URL objects, each with `id` and `url_name`
        '403':
          description: Tags feature not enabled, or tag does not belong to this account
        '404':
          description: Tag not found
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Generate an API token from the WebOrion Defacement Monitor portal. Pass
        it as `Authorization: Bearer <token>`.

````