CivicPlus Services API

The Services API from CivicPlus — 1 operation(s) for services.

Operations 1

GET /services/{service_code}.{response_format} (extended) definition of a service type

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-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

civicplus-services-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: '2.0'
  title: Open311 GeoReport Request Services 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
paths:
  /services/{service_code}.{response_format}:
    get:
      summary: (extended) definition of a service type
      description: Define attributes associated with a service code. These attributes can be unique to the city/jurisdiction.
      parameters:
      - $ref: '#/components/parameters/jurisdiction_id'
      - $ref: '#/components/parameters/response_format'
      - name: service_code
        in: path
        required: true
        schema:
          type: string
          format: uid
      responses:
        200:
          description: returns ServiceDefinition for the Service
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceDefinition'
            text/xml:
              schema:
                $ref: '#/components/schemas/ServiceDefinition'
        400:
          description: service_code or jurisdiction_id provided were not found (specify in erraddor response)
        404:
          description: service_code or jurisdiction_id provided were not found (specify in error response)
      tags:
      - Services
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:
    AttributeValue:
      description: Possible value for ServiceAttribute that defines lists
      required:
      - key
      - name
      properties:
        key:
          type: string
          format: uid
          description: Unique identifier associated with an option for singlevaluelist or multivaluelist (analogous to the value attribute in an html option tag).
        name:
          type: string
          description: Human readable title of an option for singlevaluelist or multivaluelist (analogous to the innerhtml text node of an html option tag).
    ServiceAttribute:
      description: A single attribute extension for a service
      required:
      - variable
      - code
      - datatype
      - required
      properties:
        variable:
          type: boolean
          description: If only used to present information to the user within the description field or if that user input is needed
        code:
          type: string
          format: uid
          description: Unique identifier for the attribute
        datatype:
          type: string
          enum:
          - string
          - number
          - datetime
          - text
          - singlevaluelist
          - multivaluelist
          description: Type of field used for user input. According widgets will be picked for user inputs
        required:
          type: boolean
          description: If attributes value required to submit service request
        datatype_description:
          type: string
          description: Description of the datatype which helps the user provide their input
        order:
          type: integer
          format: uint
          description: Sort order that the attributes will be presented to the user. 1 is shown first in the list.
        description:
          type: string
          description: description of the attribute field with instructions for the user to find and identify the requested information
        values:
          type: array
          items:
            $ref: '#/components/schemas/AttributeValue'
    ServiceDefinition:
      description: Attributes associated with a service code. These attributes can be unique to the city/jurisdiction.
      required:
      - service_code
      - attributes
      properties:
        service_code:
          type: string
          format: uid
          description: unique identifier for the service request type
        attributes:
          type: array
          items:
            $ref: '#/components/schemas/ServiceAttribute'
  securitySchemes:
    api_key:
      type: apiKey
      name: api_key
      in: query