CivicPlus Tokens API

The Tokens API from CivicPlus — 1 operation(s) for tokens.

Operations 1

GET /tokens/{token_id}.{response_format} Id of service_request via token

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-tokens-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-tokens-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: '2.0'
  title: Open311 GeoReport Request Tokens 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: Tokens
paths:
  /tokens/{token_id}.{response_format}:
    get:
      summary: Id of service_request via token
      description: Get the service_request_id from a temporary token. This is unnecessary if the response from creating a service request does not contain a token.
      parameters:
      - $ref: '#/components/parameters/jurisdiction_id'
      - $ref: '#/components/parameters/response_format'
      - name: token_id
        in: path
        required: true
        schema:
          type: string
          format: uid
      responses:
        200:
          description: returns tuple request ID, token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TokenResponse'
            text/xml:
              schema:
                $ref: '#/components/schemas/TokenResponse'
      tags:
      - Tokens
components:
  schemas:
    TokenResponse:
      description: Resolves temporary token to ID of the request
      properties:
        service_request_id:
          type: string
          format: uid
          description: Unique ID of the service request created.
        token:
          type: string
          format: uid
          description: Use this to call GET service_request_id
  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
  securitySchemes:
    api_key:
      type: apiKey
      name: api_key
      in: query