MarineTraffic · Capability

MarineTraffic Reverse Geocoding

MarineTraffic Reverse Geocoding. 1 operations. Self-contained Naftiko capability covering one MarineTraffic AIS business surface.

MarineTraffic Reverse Geocoding is a Naftiko capability published by MarineTraffic, one of 13 capabilities the APIs.io network indexes for this provider. It bundles 1 operation across the GET method rooted at /v1/reversegeocode.

The capability includes 1 read-only operation. Lead operation: Reverse Geocoding of a Single Point. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include MarineTraffic, AIS, and Maritime.

Run with Naftiko MarineTrafficAISMaritime

What You Can Do

GET
Reversegeocode — Reverse Geocoding of a Single Point
/v1/reversegeocode

MCP Tools

marinetraffic-reversegeocode

Reverse Geocoding of a Single Point

read-only idempotent

Capability Spec

reverse-geocoding.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: MarineTraffic Reverse Geocoding
  description: MarineTraffic Reverse Geocoding. 1 operations. Self-contained Naftiko capability covering one MarineTraffic
    AIS business surface.
  tags:
  - MarineTraffic
  - AIS
  - Maritime
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    MARINETRAFFIC_API_KEY: MARINETRAFFIC_API_KEY
capability:
  consumes:
  - type: http
    namespace: reverse-geocoding
    baseUri: https://services.marinetraffic.com/api
    description: Reverse geocoding for a single coordinate to a maritime location.
    resources:
    - name: reversegeocode-api_key
      path: /reversegeocode/{api_key}
      operations:
      - name: reversegeocode
        method: GET
        description: Reverse Geocoding of a Single Point
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: coordinates
          in: query
          type: string
          description: A latitude/longitude pair that you wish to receive the MarineTraffic areas/assets that intersects with
          required: true
        - name: radius
          in: query
          type: number
          description: Maximum distance (in NM) from the given point that should be searched for nearby areas/assets </br></br>
            Cannot be greater than 10NM
          required: false
        - name: exclude_ports
          in: query
          type: integer
          description: Flag that indicates if Ports information will be excluded from response in case given point intersects
            with them (0:no, 1:yes)
          required: false
        - name: exclude_berths
          in: query
          type: integer
          description: Flag that indicates if Berths information will be excluded from response in case given point intersects
            with them (0:no, 1:yes)
          required: false
        - name: exclude_terminals
          in: query
          type: integer
          description: Flag that indicates if Terminals information will be excluded from response in case given point intersects
            with them (0:no, 1:yes)
          required: false
        - name: exclude_standard_areas
          in: query
          type: integer
          description: Flag that indicates if Standard Areas information will be excluded from response in case given point
            intersects with them (0:no, 1:yes)
          required: false
        - name: exclude_custom_areas
          in: query
          type: integer
          description: Flag that indicates if Custom Areas information will be excluded from response in case given point
            intersects with them (0:no, 1:yes)
          required: false
        - name: protocol
          in: query
          type: string
          description: 'Response type. Use one of the following: <ul>'
          required: false
    authentication:
      type: apikey
      key: api_key
      value: '{{env.MARINETRAFFIC_API_KEY}}'
      placement: path
  exposes:
  - type: rest
    namespace: reverse-geocoding-rest
    port: 8080
    description: REST adapter for MarineTraffic Reverse Geocoding. One resource per consumed operation.
    resources:
    - path: /v1/reversegeocode
      name: reversegeocode-api_key
      description: REST surface for reversegeocode-api_key.
      operations:
      - method: GET
        name: reversegeocode
        description: Reverse Geocoding of a Single Point
        call: reverse-geocoding.reversegeocode
        with:
          coordinates: rest.query.coordinates
          radius: rest.query.radius
          exclude_ports: rest.query.exclude_ports
          exclude_berths: rest.query.exclude_berths
          exclude_terminals: rest.query.exclude_terminals
          exclude_standard_areas: rest.query.exclude_standard_areas
          exclude_custom_areas: rest.query.exclude_custom_areas
          protocol: rest.query.protocol
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: reverse-geocoding-mcp
    port: 9090
    transport: http
    description: MCP adapter for MarineTraffic Reverse Geocoding. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: marinetraffic-reversegeocode
      description: Reverse Geocoding of a Single Point
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: reverse-geocoding.reversegeocode
      with:
        coordinates: tools.coordinates
        radius: tools.radius
        exclude_ports: tools.exclude_ports
        exclude_berths: tools.exclude_berths
        exclude_terminals: tools.exclude_terminals
        exclude_standard_areas: tools.exclude_standard_areas
        exclude_custom_areas: tools.exclude_custom_areas
        protocol: tools.protocol
      outputParameters:
      - type: object
        mapping: $.