CivicPlus Services.{response Format} API

The Services.{response Format} API from CivicPlus — 1 operation(s) for services.{response format}.

Business capability
Service Request and Inquiry Handling BC-3220.40

Operations 1

GET /services.{response_format} service types

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/civicplus-services-response-format-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

civicplus-services-response-format-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: '2.0'
  title: Open311 GeoReport Request Services.{response Format} Services.{response Format} API
  description: Open311 allows you to get/post civic information of cities via a unified interface. The GeoReport part allows you to submit and view issues at the public local space
  termsOfService: (depends on server instance for example NYC http://dev.cityofchicago.org/docs/api/tos)
  contact:
    name: Open311 community
    url: http://wiki.open311.org/GeoReport_v2/
    email: discuss@lists.open311.org
  license:
    name: CC BY 3.0
    url: http://creativecommons.org/licenses/by/3.0/
servers:
- url: https://seeclickfix.com/api/v2
tags:
- name: Services.{response Format}
paths:
  /services.{response_format}:
    get:
      summary: service types
      description: List acceptable service request types and their associated service codes. These request types can be unique to the city/jurisdiction.
      parameters:
      - $ref: '#/components/parameters/jurisdiction_id'
      - $ref: '#/components/parameters/response_format'
      responses:
        200:
          description: ok
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Service'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Service'
        400:
          description: The URL request is invalid or service is not running or reachable. Client should notify us after checking URL
        404:
          description: jurisdiction_id provided was not found (specify in error response).
      tags:
      - Services.{response Format}
components:
  parameters:
    jurisdiction_id:
      name: jurisdiction_id
      in: query
      description: <?>
      required: true
      schema:
        type: string
        format: uid
    response_format:
      name: response_format
      in: path
      required: true
      schema:
        type: string
        format: uid
  schemas:
    Service:
      description: A single service (type) offered via Open311
      required:
      - service_code
      - service_name
      - type
      properties:
        service_code:
          type: string
          format: uid
          description: unique identifier for the service request type
        service_name:
          type: string
          description: human readable name of the service request type
        description:
          type: string
        metadata:
          type: boolean
          description: Are there additional form fields for this service type? If true use GET service definition for that one
        type:
          type: string
          description: Possible values realtime, batch, blackbox
          enum:
          - realtime
          - batch
          - blackbox
        keywords:
          type: array
          items:
            type: string
          collectionFormat: csv
          description: list of keywords or tags seperated by comma
        group:
          type: string
          description: Category or group to cluster different request types e.g. “sanitation”
  securitySchemes:
    api_key:
      type: apiKey
      name: api_key
      in: query