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

# Show an award saved search



## OpenAPI

````yaml /openapi/tools-v1.yaml get /api/tools/v1/awards/saved_searches/{id}
openapi: 3.1.0
info:
  title: Govly Tools API (Alpha)
  version: 1.0.0-alpha
  description: >
    ALPHA / UNSTABLE: This API is still in active development. Endpoint
    behavior, request fields, response fields, error codes, and operation names
    may change before the Tools API is declared stable.

    REST-callable tool surface for agent and automation workflows. Agents are
    the primary consumer, but integrations can be built on this API. Responses
    are JSON for typed clients; MCP tools may render action results into
    text-oriented formats separately.
servers:
  - url: https://app.govly.com
security:
  - bearerApiKey: []
  - headerApiKey: []
tags:
  - name: Opportunities
    description: Search, fetch, and inspect Govly opportunity records.
  - name: Awards
    description: Search and inspect awarded government contracts.
  - name: Contacts
    description: Search and inspect government points of contact.
  - name: Signals
    description: Search clustered procurement and market intelligence signals.
  - name: Workspaces
    description: Create, update, and inspect opportunity workspaces.
  - name: Workspace Members
    description: Add users and teams to workspaces.
  - name: Workspace Attachments
    description: List and upload workspace attachments.
  - name: Workspace Comments
    description: Post comments to workspaces.
  - name: Follows
    description: Follow opportunities and related workspace activity.
  - name: Saved Searches
    description: List saved opportunity searches and cached matches.
  - name: Documents
    description: >-
      Read document representations and request temporary original-file
      downloads.
  - name: Quote Submissions
    description: >-
      Inspect quote submission requirements, submit quotes, and poll submission
      status.
  - name: Inbox
    description: Read and triage the authenticated user's matched inbox items.
paths:
  /api/tools/v1/awards/saved_searches/{id}:
    get:
      tags:
        - Saved Searches
      summary: Show an award saved search
      operationId: show_award_saved_search
      parameters:
        - $ref: '#/components/parameters/id'
      responses:
        '200':
          description: Award saved search
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                  - meta
                properties:
                  data:
                    $ref: '#/components/schemas/SavedSearch'
                  meta:
                    $ref: '#/components/schemas/SavedSearchWindowMeta'
        '401':
          $ref: '#/components/responses/Error'
        '403':
          $ref: '#/components/responses/Error'
        '404':
          $ref: '#/components/responses/Error'
components:
  parameters:
    id:
      name: id
      in: path
      required: true
      schema:
        type: string
  schemas:
    SavedSearch:
      type: object
      required:
        - id
        - name
        - searchableType
      properties:
        id:
          type: string
        name:
          type: string
        active:
          type: boolean
        searchableType:
          type: string
          enum:
            - Award
            - Contact
          description: Which corpus this saved search targets.
        criteria:
          type: object
          additionalProperties: true
          description: >
            The stored filter set. Keys are camelized on the way out like every
            other field, so they do not match the snake_case names a search
            request expects; convert before replaying them.
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
    SavedSearchWindowMeta:
      type: object
      required:
        - dateRange
        - dateRangeParam
      description: >
        The date window this saved search would search, resolved at request
        time. It is not part of `criteria`: date_range is stripped before a
        saved search is persisted and the window is stored as relative day
        offsets, so the stored filters show a date field with no range beside
        it. Returned on show only — a window is per saved search, so it has no
        unambiguous place in a list response.
      properties:
        dateRange:
          type: array
          items:
            type: string
            format: date-time
          description: Absolute window, on Eastern calendar-day boundaries.
        dateRangeParam:
          type: string
          enum:
            - action_dates
            - period_of_performance_start_date
            - period_of_performance_end_date
            - period_of_performance_potential_end_date
            - last_modified_date
            - awarded_date
            - last_summarized_at
          description: The award date field the window applies to.
    ErrorEnvelope:
      type: object
      required:
        - errors
      properties:
        errors:
          type: array
          items:
            type: object
            required:
              - status
              - code
              - title
              - detail
            properties:
              status:
                type: string
              code:
                type: string
              title:
                type: string
              detail:
                type: string
              source:
                type: object
                properties:
                  pointer:
                    type: string
  responses:
    Error:
      description: Error response
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorEnvelope'
  securitySchemes:
    bearerApiKey:
      type: http
      scheme: bearer
      bearerFormat: API key
    headerApiKey:
      type: apiKey
      in: header
      name: X-API-KEY

````