OpenGov Tags API

The Tags API from OpenGov — 18 operation(s) for tags.

Operations 18

GET /public/api/v1/contracts/tags/contact Contact tags #
GET /public/api/v1/contracts/tags/contracts Contract tags #
GET /public/api/v1/contracts/tags/contract-attachments Contract Attachment tags #
GET /public/api/v1/contracts/tags/contract-insurances Contract Insurance tags #
GET /public/api/v1/contracts/tags/delivery-codes Delivery Code tags #
GET /public/api/v1/contracts/tags/fiscal-years Fiscal Year tags #
GET /public/api/v1/contracts/tags/funding-sources Funding Source tags #
GET /public/api/v1/contracts/tags/payment-terms Payment Terms tags #
GET /public/api/v1/contracts/tags/procurement-classifications Procurement Classification tags #
GET /public/api/v2/entities/{entityUuid}/contracts/tags/contact Contact tags #
GET /public/api/v2/entities/{entityUuid}/contracts/tags/contracts Contract tags #
GET /public/api/v2/entities/{entityUuid}/contracts/tags/contract-attachments Contract Attachment tags #
GET /public/api/v2/entities/{entityUuid}/contracts/tags/contract-insurances Contract Insurance tags #
GET /public/api/v2/entities/{entityUuid}/contracts/tags/delivery-codes Delivery Code tags #
GET /public/api/v2/entities/{entityUuid}/contracts/tags/fiscal-years Fiscal Year tags #
GET /public/api/v2/entities/{entityUuid}/contracts/tags/funding-sources Funding Source tags #
GET /public/api/v2/entities/{entityUuid}/contracts/tags/payment-terms Payment Terms tags #
GET /public/api/v2/entities/{entityUuid}/contracts/tags/procurement-classifications Procurement Classification tags #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/opengov-tags-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

opengov-tags-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Opengov Tags API
  x-logo:
    url: https://assets.procurement.opengov.com/brand/pro-logo-padded.png
  version: '1.0'
  description: 'Operations tagged Tags across 2 of this provider''s published API definitions: opengov-procurement-v1-openapi.yml, opengov-procurement-v2-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.procurement.opengov.com
  description: Production
tags:
- name: Tags
  x-displayName: Tags
paths:
  /public/api/v1/contracts/tags/contact:
    get:
      description: Returns a list of unique "Contact" tag names for the caller's organization.
      operationId: TagsV1Controller_getContactTags
      parameters: []
      responses:
        '200':
          description: Successfully retrieved Contact tags.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContactTagsResponseDto'
              examples:
                default:
                  summary: Typical contact tags
                  value:
                    tags:
                    - Vendor
                    - Prime
                    - Subcontractor
                    - MWBE
                    - SBE
                empty:
                  summary: No tags found
                  value:
                    tags: []
        '401':
          content:
            application/json:
              examples:
                Missing Authorization Header:
                  value:
                    statusCode: 401
                    message: Authorization header not found
                    error: Unauthorized
                Missing Authorization Value:
                  value:
                    statusCode: 401
                    message: Authorization header value not found
                    error: Unauthorized
                Invalid Authorization Header:
                  value:
                    statusCode: 401
                    message: Invalid authorization header
                    error: Unauthorized
                Token Verification Failed:
                  value:
                    statusCode: 401
                    message: Token verification failed
                    error: Unauthorized
                API Key Authentication Failed:
                  value:
                    statusCode: 401
                    message: API key authentication failed
                    error: Unauthorized
                Incomplete User Information:
                  value:
                    statusCode: 401
                    message: 'User or entity information incomplete: userUUID=undefined, entityUUID=undefined'
                    error: Unauthorized
                Failed to Get Entitlements:
                  value:
                    statusCode: 401
                    message: Failed to get entitlements
                    error: Unauthorized
          description: ''
        '403':
          content:
            application/json:
              examples:
                Missing Required Entitlements:
                  value:
                    statusCode: 403
                    message: 'Required entitlements not found: PLATFORM_ADMIN_SETTINGS_ENTITLEMENT, PRO_ENTITLEMENT'
                    error: Forbidden
                Not a Member of Requested Entity:
                  value:
                    statusCode: 403
                    message: User is not a member of the requested entity
                    error: Forbidden
                No Associated Government Organization:
                  value:
                    statusCode: 403
                    message: No associated government organization found for user
                    error: Forbidden
          description: ''
        '404':
          content:
            application/json:
              examples:
                Requested Entity Not Found:
                  value:
                    statusCode: 404
                    message: Requested entity not found
                    error: Not Found
          description: ''
        '500':
          description: Internal server error while retrieving Contact tags.
          content:
            application/json:
              examples:
                Server Error:
                  value:
                    statusCode: 500
                    message: Internal server error
                    error: Internal Server Error
      summary: Contact tags
      tags:
      - Tags
      security:
      - BearerToken: []
      - APIKey: []
    servers:
    - url: https://api.procurement.opengov.com
      description: Production
  /public/api/v1/contracts/tags/contracts:
    get:
      description: Returns a list of unique "Contract" tag names for the caller's organization.
      operationId: TagsV1Controller_getContractTags
      parameters: []
      responses:
        '200':
          description: Successfully retrieved Contract tags.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContractTagsResponseDto'
              examples:
                default:
                  summary: Typical contract tags
                  value:
                    tags:
                    - Construction
                    - IT Services
                    - Renewal FY2025
                    - Emergency Procurement
                    - Sole Source
                empty:
                  summary: No tags found
                  value:
                    tags: []
        '401':
          content:
            application/json:
              examples:
                Missing Authorization Header:
                  value:
                    statusCode: 401
                    message: Authorization header not found
                    error: Unauthorized
                Missing Authorization Value:
                  value:
                    statusCode: 401
                    message: Authorization header value not found
                    error: Unauthorized
                Invalid Authorization Header:
                  value:
                    statusCode: 401
                    message: Invalid authorization header
                    error: Unauthorized
                Token Verification Failed:
                  value:
                    statusCode: 401
                    message: Token verification failed
                    error: Unauthorized
                API Key Authentication Failed:
                  value:
                    statusCode: 401
                    message: API key authentication failed
                    error: Unauthorized
                Incomplete User Information:
                  value:
                    statusCode: 401
                    message: 'User or entity information incomplete: userUUID=undefined, entityUUID=undefined'
                    error: Unauthorized
                Failed to Get Entitlements:
                  value:
                    statusCode: 401
                    message: Failed to get entitlements
                    error: Unauthorized
          description: ''
        '403':
          content:
            application/json:
              examples:
                Missing Required Entitlements:
                  value:
                    statusCode: 403
                    message: 'Required entitlements not found: PLATFORM_ADMIN_SETTINGS_ENTITLEMENT, PRO_ENTITLEMENT'
                    error: Forbidden
                Not a Member of Requested Entity:
                  value:
                    statusCode: 403
                    message: User is not a member of the requested entity
                    error: Forbidden
                No Associated Government Organization:
                  value:
                    statusCode: 403
                    message: No associated government organization found for user
                    error: Forbidden
          description: ''
        '404':
          content:
            application/json:
              examples:
                Requested Entity Not Found:
                  value:
                    statusCode: 404
                    message: Requested entity not found
                    error: Not Found
          description: ''
        '500':
          description: Internal server error while retrieving Contract tags.
          content:
            application/json:
              examples:
                Server Error:
                  value:
                    statusCode: 500
                    message: Internal server error
                    error: Internal Server Error
      summary: Contract tags
      tags:
      - Tags
      security:
      - BearerToken: []
      - APIKey: []
    servers:
    - url: https://api.procurement.opengov.com
      description: Production
  /public/api/v1/contracts/tags/contract-attachments:
    get:
      description: Returns a list of unique "Contract Attachment" tag names for the caller's organization.
      operationId: TagsV1Controller_getContractAttachmentTags
      parameters: []
      responses:
        '200':
          description: Successfully retrieved Contract Attachment tags.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContractAttachmentTagsResponseDto'
              examples:
                default:
                  summary: Typical contract attachment tags
                  value:
                    tags:
                    - RFP
                    - SOW
                    - COI
                    - Addendum
                    - Signed Contract
                empty:
                  summary: No tags found
                  value:
                    tags: []
        '401':
          content:
            application/json:
              examples:
                Missing Authorization Header:
                  value:
                    statusCode: 401
                    message: Authorization header not found
                    error: Unauthorized
                Missing Authorization Value:
                  value:
                    statusCode: 401
                    message: Authorization header value not found
                    error: Unauthorized
                Invalid Authorization Header:
                  value:
                    statusCode: 401
                    message: Invalid authorization header
                    error: Unauthorized
                Token Verification Failed:
                  value:
                    statusCode: 401
                    message: Token verification failed
                    error: Unauthorized
                API Key Authentication Failed:
                  value:
                    statusCode: 401
                    message: API key authentication failed
                    error: Unauthorized
                Incomplete User Information:
                  value:
                    statusCode: 401
                    message: 'User or entity information incomplete: userUUID=undefined, entityUUID=undefined'
                    error: Unauthorized
                Failed to Get Entitlements:
                  value:
                    statusCode: 401
                    message: Failed to get entitlements
                    error: Unauthorized
          description: ''
        '403':
          content:
            application/json:
              examples:
                Missing Required Entitlements:
                  value:
                    statusCode: 403
                    message: 'Required entitlements not found: PLATFORM_ADMIN_SETTINGS_ENTITLEMENT, PRO_ENTITLEMENT'
                    error: Forbidden
                Not a Member of Requested Entity:
                  value:
                    statusCode: 403
                    message: User is not a member of the requested entity
                    error: Forbidden
                No Associated Government Organization:
                  value:
                    statusCode: 403
                    message: No associated government organization found for user
                    error: Forbidden
          description: ''
        '404':
          content:
            application/json:
              examples:
                Requested Entity Not Found:
                  value:
                    statusCode: 404
                    message: Requested entity not found
                    error: Not Found
          description: ''
        '500':
          description: Internal server error while retrieving Contract Attachment tags.
          content:
            application/json:
              examples:
                Server Error:
                  value:
                    statusCode: 500
                    message: Internal server error
                    error: Internal Server Error
      summary: Contract Attachment tags
      tags:
      - Tags
      security:
      - BearerToken: []
      - APIKey: []
    servers:
    - url: https://api.procurement.opengov.com
      description: Production
  /public/api/v1/contracts/tags/contract-insurances:
    get:
      description: Returns a list of unique "Contract Insurance" tag names for the caller's organization.
      operationId: TagsV1Controller_getContractInsuranceTags
      parameters: []
      responses:
        '200':
          description: Successfully retrieved Contract Insurance tags.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContractInsuranceTagsResponseDto'
              examples:
                default:
                  summary: Typical contract insurance tags
                  value:
                    tags:
                    - General Liability
                    - Workers' Compensation
                    - Auto Liability
                    - Professional Liability
                    - Umbrella
                empty:
                  summary: No tags found
                  value:
                    tags: []
        '401':
          content:
            application/json:
              examples:
                Missing Authorization Header:
                  value:
                    statusCode: 401
                    message: Authorization header not found
                    error: Unauthorized
                Missing Authorization Value:
                  value:
                    statusCode: 401
                    message: Authorization header value not found
                    error: Unauthorized
                Invalid Authorization Header:
                  value:
                    statusCode: 401
                    message: Invalid authorization header
                    error: Unauthorized
                Token Verification Failed:
                  value:
                    statusCode: 401
                    message: Token verification failed
                    error: Unauthorized
                API Key Authentication Failed:
                  value:
                    statusCode: 401
                    message: API key authentication failed
                    error: Unauthorized
                Incomplete User Information:
                  value:
                    statusCode: 401
                    message: 'User or entity information incomplete: userUUID=undefined, entityUUID=undefined'
                    error: Unauthorized
                Failed to Get Entitlements:
                  value:
                    statusCode: 401
                    message: Failed to get entitlements
                    error: Unauthorized
          description: ''
        '403':
          content:
            application/json:
              examples:
                Missing Required Entitlements:
                  value:
                    statusCode: 403
                    message: 'Required entitlements not found: PLATFORM_ADMIN_SETTINGS_ENTITLEMENT, PRO_ENTITLEMENT'
                    error: Forbidden
                Not a Member of Requested Entity:
                  value:
                    statusCode: 403
                    message: User is not a member of the requested entity
                    error: Forbidden
                No Associated Government Organization:
                  value:
                    statusCode: 403
                    message: No associated government organization found for user
                    error: Forbidden
          description: ''
        '404':
          content:
            application/json:
              examples:
                Requested Entity Not Found:
                  value:
                    statusCode: 404
                    message: Requested entity not found
                    error: Not Found
          description: ''
        '500':
          description: Internal server error while retrieving Contract Insurance tags.
          content:
            application/json:
              examples:
                Server Error:
                  value:
                    statusCode: 500
                    message: Internal server error
                    error: Internal Server Error
      summary: Contract Insurance tags
      tags:
      - Tags
      security:
      - BearerToken: []
      - APIKey: []
    servers:
    - url: https://api.procurement.opengov.com
      description: Production
  /public/api/v1/contracts/tags/delivery-codes:
    get:
      description: Returns a list of unique "Delivery Code" tag names for the caller's organization.
      operationId: TagsV1Controller_getDeliveryCodeTags
      parameters: []
      responses:
        '200':
          description: Successfully retrieved Delivery Code tags.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeliveryCodeTagsResponseDto'
              examples:
                default:
                  summary: Typical delivery code tags
                  value:
                    tags:
                    - FOB Origin
                    - FOB Destination
                    - Expedited
                    - Overnight
                    - Drop-ship
                empty:
                  summary: No tags found
                  value:
                    tags: []
        '401':
          content:
            application/json:
              examples:
                Missing Authorization Header:
                  value:
                    statusCode: 401
                    message: Authorization header not found
                    error: Unauthorized
                Missing Authorization Value:
                  value:
                    statusCode: 401
                    message: Authorization header value not found
                    error: Unauthorized
                Invalid Authorization Header:
                  value:
                    statusCode: 401
                    message: Invalid authorization header
                    error: Unauthorized
                Token Verification Failed:
                  value:
                    statusCode: 401
                    message: Token verification failed
                    error: Unauthorized
                API Key Authentication Failed:
                  value:
                    statusCode: 401
                    message: API key authentication failed
                    error: Unauthorized
                Incomplete User Information:
                  value:
                    statusCode: 401
                    message: 'User or entity information incomplete: userUUID=undefined, entityUUID=undefined'
                    error: Unauthorized
                Failed to Get Entitlements:
                  value:
                    statusCode: 401
                    message: Failed to get entitlements
                    error: Unauthorized
          description: ''
        '403':
          content:
            application/json:
              examples:
                Missing Required Entitlements:
                  value:
                    statusCode: 403
                    message: 'Required entitlements not found: PLATFORM_ADMIN_SETTINGS_ENTITLEMENT, PRO_ENTITLEMENT'
                    error: Forbidden
                Not a Member of Requested Entity:
                  value:
                    statusCode: 403
                    message: User is not a member of the requested entity
                    error: Forbidden
                No Associated Government Organization:
                  value:
                    statusCode: 403
                    message: No associated government organization found for user
                    error: Forbidden
          description: ''
        '404':
          content:
            application/json:
              examples:
                Requested Entity Not Found:
                  value:
                    statusCode: 404
                    message: Requested entity not found
                    error: Not Found
          description: ''
        '500':
          description: Internal server error while retrieving Delivery Code tags.
          content:
            application/json:
              examples:
                Server Error:
                  value:
                    statusCode: 500
                    message: Internal server error
                    error: Internal Server Error
      summary: Delivery Code tags
      tags:
      - Tags
      security:
      - BearerToken: []
      - APIKey: []
    servers:
    - url: https://api.procurement.opengov.com
      description: Production
  /public/api/v1/contracts/tags/fiscal-years:
    get:
      description: Returns a list of unique "Fiscal Year" tag names for the caller's organization.
      operationId: TagsV1Controller_getFiscalYearTags
      parameters: []
      responses:
        '200':
          description: Successfully retrieved Fiscal Year tags.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FiscalYearTagsResponseDto'
              examples:
                default:
                  summary: Typical fiscal year tags
                  value:
                    tags:
                    - FY2023
                    - FY2024
                    - FY2025
                empty:
                  summary: No tags found
                  value:
                    tags: []
        '401':
          content:
            application/json:
              examples:
                Missing Authorization Header:
                  value:
                    statusCode: 401
                    message: Authorization header not found
                    error: Unauthorized
                Missing Authorization Value:
                  value:
                    statusCode: 401
                    message: Authorization header value not found
                    error: Unauthorized
                Invalid Authorization Header:
                  value:
                    statusCode: 401
                    message: Invalid authorization header
                    error: Unauthorized
                Token Verification Failed:
                  value:
                    statusCode: 401
                    message: Token verification failed
                    error: Unauthorized
                API Key Authentication Failed:
                  value:
                    statusCode: 401
                    message: API key authentication failed
                    error: Unauthorized
                Incomplete User Information:
                  value:
                    statusCode: 401
                    message: 'User or entity information incomplete: userUUID=undefined, entityUUID=undefined'
                    error: Unauthorized
                Failed to Get Entitlements:
                  value:
                    statusCode: 401
                    message: Failed to get entitlements
                    error: Unauthorized
          description: ''
        '403':
          content:
            application/json:
              examples:
                Missing Required Entitlements:
                  value:
                    statusCode: 403
                    message: 'Required entitlements not found: PLATFORM_ADMIN_SETTINGS_ENTITLEMENT, PRO_ENTITLEMENT'
                    error: Forbidden
                Not a Member of Requested Entity:
                  value:
                    statusCode: 403
                    message: User is not a member of the requested entity
                    error: Forbidden
                No Associated Government Organization:
                  value:
                    statusCode: 403
                    message: No associated government organization found for user
                    error: Forbidden
          description: ''
        '404':
          content:
            application/json:
              examples:
                Requested Entity Not Found:
                  value:
                    statusCode: 404
                    message: Requested entity not found
                    error: Not Found
          description: ''
        '500':
          description: Internal server error while retrieving Fiscal Year tags.
          content:
            application/json:
              examples:
                Server Error:
                  value:
                    statusCode: 500
                    message: Internal server error
                    error: Internal Server Error
      summary: Fiscal Year tags
      tags:
      - Tags
      security:
      - BearerToken: []
      - APIKey: []
    servers:
    - url: https://api.procurement.opengov.com
      description: Production
  /public/api/v1/contracts/tags/funding-sources:
    get:
      description: Returns a list of unique "Funding Source" tag names for the caller's organization.
      operationId: TagsV1Controller_getFundingSourceTags
      parameters: []
      responses:
        '200':
          description: Successfully retrieved Funding Source tags.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FundingSourceTagsResponseDto'
              examples:
                default:
                  summary: Typical funding source tags
                  value:
                    tags:
                    - General Fund
                    - Capital Projects Fund
                    - 'Grant: ARPA'
                    - 'Grant: CDBG'
                    - Bond Proceeds
                empty:
                  summary: No tags found
                  value:
                    tags: []
        '401':
          content:
            application/json:
              examples:
                Missing Authorization Header:
                  value:
                    statusCode: 401
                    message: Authorization header not found
                    error: Unauthorized
                Missing Authorization Value:
                  value:
                    statusCode: 401
                    message: Authorization header value not found
                    error: Unauthorized
                Invalid Authorization Header:
                  value:
                    statusCode: 401
                    message: Invalid authorization header
                    error: Unauthorized
                Token Verification Failed:
                  value:
                    statusCode: 401
                    message: Token verification failed
                    error: Unauthorized
                API Key Authentication Failed:
                  value:
                    statusCode: 401
                    message: API key authentication failed
                    error: Unauthorized
                Incomplete User Information:
                  value:
                    statusCode: 401
                    message: 'User or entity information incomplete: userUUID=undefined, entityUUID=undefined'
                    error: Unauthorized
                Failed to Get Entitlements:
                  value:
                    statusCode: 401
                    message: Failed to get entitlements
                    error: Unauthorized
          description: ''
        '403':
          content:
            application/json:
              examples:
                Missing Required Entitlements:
                  value:
                    statusCode: 403
                    message: 'Required entitlements not found: PLATFORM_ADMIN_SETTINGS_ENTITLEMENT, PRO_ENTITLEMENT'
                    error: Forbidden
                Not a Member of Requested Entity:
                  value:
                    statusCode: 403
                    message: User is not a member of the requested entity
                    error: Forbidden
                No Associated Government Organization:
                  value:
                    statusCode: 403
                    message: No associated government organization found for user
                    error: Forbidden
          description: ''
        '404':
          content:
            application/json:
              examples:
                Requested Entity Not Found:
                  value:
                    statusCode: 404
                    message: Requested entity not found
                    error: Not Found
          description: ''
        '500':
          description: Internal server error while retrieving Funding Source tags.
          content:
            application/json:
              examples:
                Server Error:
                  value:
                    statusCode: 500
                    message: Internal server error
                    error: Internal Server Error
      summary: Funding Source tags
      tags:
      - Tags
      security:
      - BearerToken: []
      - APIKey: []
    servers:
    - url: https://api.procurement.opengov.com
      description: Production
  /public/api/v1/contracts/tags/payment-terms:
    get:
      description: Returns a list of unique "Payment Terms" tag names for the caller's organization.
      operationId: TagsV1Controller_getPaymentTermsTags
      parameters: []
      responses:
        '200':
          description: Successfully retrieved Payment Terms tags.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaymentTermsTagsResponseDto'
              examples:
                default:
                  summary: Typical payment terms tags
                  value:
                    tags:
                    - Net 30
                    - Net 45
                    - Due Upon Receipt
                    - 2/10 Net 30
                    - Milestone-based
                empty:
                  summary: No tags found
                  value:
                    tags: []
        '401':
          content:
            application/json:
              examples:
                Missing Authorization Header:
                  value:
                    statusCode: 401
                    message: Authorization header not found
                    error: Unauthorized
                Missing Authorization Value:
                  value:
                    statusCode: 401
                    message: Authorization header value not found
                    error: Unauthorized
                Invalid Authorization Header:
                  value:
                    statusCode: 401
                    message: Invalid authorization header
                    error: Unauthorized
                Token Verification Failed:
                  value:
                    statusCode: 401
                    message: Token verification failed
                    error: Unauthorized
                API Key Authentication Failed:
                  value:
                    statusCode: 401
                    message: API key authentication failed
                    error: Unauthorized
                Incomplete User Information:
                  value:
                    statusCode: 401
                    message: 'User or entity information incomplete: userUUID=undefined, entityUUID=undefined'
                    error: Unauthorized
                Failed to Get Entitlements:
                  value:
                    statusCode: 401
                    message: Failed to get entitlements
                    error: Unauthorized
          description: ''
        '403':
          content:
            application/json:
              examples:
                Missing Required Entitlements:
                  value:
             

# --- truncated at 32 KB (81 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/opengov/refs/heads/main/openapi/opengov-tags-api-openapi.yml