University of Helsinki Google Maps API

The Google Maps API from University of Helsinki — 1 operation(s) for google maps.

Operations 1

GET /google-maps/geocode/json Geocode #

Documentation

Specifications

Schemas & Data

📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/university-of-helsinki/refs/heads/main/json-schema/university-of-helsinki-hy-organisation-api-schemas.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/university-of-helsinki/refs/heads/main/json-schema/university-of-helsinki-contact-search-api-schemas.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/university-of-helsinki/refs/heads/main/json-schema/university-of-helsinki-course-pages-cms-schemas.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/university-of-helsinki/refs/heads/main/json-schema/university-of-helsinki-helsinki-fi-content-schemas.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/university-of-helsinki/refs/heads/main/json-schema/university-of-helsinki-hy-building-api-schemas.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/university-of-helsinki/refs/heads/main/json-schema/university-of-helsinki-serviceapi-schemas.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/university-of-helsinki/refs/heads/main/json-schema/university-of-helsinki-employeeinformationapi-schemas.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/university-of-helsinki/refs/heads/main/json-schema/university-of-helsinki-persongroup-schemas.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/university-of-helsinki/refs/heads/main/json-schema/university-of-helsinki-general-efecte-api-schemas.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/university-of-helsinki/refs/heads/main/json-schema/university-of-helsinki-network-registry-api-schemas.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/university-of-helsinki/refs/heads/main/json-schema/university-of-helsinki-finbif-laji-schemas.json

Other Resources

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/university-of-helsinki-google-maps-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

university-of-helsinki-google-maps-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Laji Google Maps API
  description: '## Authentication


    This API requires an **Access Token**.'
  version: '1'
  contact: {}
servers:
- url: https://api.laji.fi
tags:
- name: Google Maps
paths:
  /google-maps/geocode/json:
    get:
      operationId: geocode
      tags:
      - Google Maps
      description: The Geocoding API is a service that provides geocoding and reverse geocoding of addresses.
      parameters:
      - name: address
        description: The street address or plus code that you want to geocode.
        in: query
        schema:
          type: string
      - name: latlng
        description: The latitude and longitude of the location to geocode.
        in: query
        schema:
          type: string
      - name: components
        description: A components filter with elements separated by a pipe (|).
        in: query
        schema:
          type: array
          items:
            type: string
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GoogleMapsGeocodingResponse'
      security:
      - Access token: []
      - Lang: []
      - Person token: []
      summary: Geocode
      x-summary-source: derived
components:
  schemas:
    GoogleMapsGeocodingResponse:
      type: object
      required:
      - status
      - results
      properties:
        results:
          type: array
          items:
            $ref: '#/components/schemas/GoogleMapsGeocodingResult'
        status:
          type: string
    GoogleMapsAddressComponent:
      type: object
      required:
      - long_name
      - short_name
      - types
      properties:
        long_name:
          type: string
        short_name:
          type: string
        types:
          type: array
          items:
            type: string
    GoogleMapsGeocodingResult:
      type: object
      required:
      - address_components
      - formatted_address
      - geometry
      - place_id
      - types
      properties:
        address_components:
          type: array
          items:
            $ref: '#/components/schemas/GoogleMapsAddressComponent'
        formatted_address:
          type: string
        geometry:
          type: object
          required:
          - location
          properties:
            location:
              type: object
              required:
              - lat
              - lng
              properties:
                lat:
                  type: number
                lng:
                  type: number
        place_id:
          type: string
        types:
          type: array
          items:
            type: string
  securitySchemes:
    Access_token:
      scheme: bearer
      bearerFormat: JWT
      type: http
      description: Access token
    Lang:
      type: apiKey
      in: header
      name: Accept-Language
      description: Sets the 'Accept-Language' header. One of 'fi', 'sv,' 'en'. Defaults to 'en'.
    Person_token:
      type: apiKey
      in: header
      name: Person-Token