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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/sinay-port-congestion-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
openapi: 3.2.0
info:
title: Sinay Maritime APIs CO2 Emission Port Congestion API
description: 'Consolidated OpenAPI description of five Sinay Developers Platform APIs - Ports and Vessels, Metocean, CO2 Emission, ETA (ETAC), and Port Congestion. Every Sinay API is served over HTTPS from the single host api.sinay.ai, with each product mounted under its own versioned base path (for example `/co2/api/v2` or `/ports-vessels/api/v1`). All endpoints require an API key passed in an `API_KEY` request header; get a free key from the Sinay Developers Platform (https://developers.sinay.ai/).
This document consolidates the individual per-product Swagger files published live at https://api.sinay.ai/<product>/api/<version>/swagger.yaml (confirmed 2026-07-12). Paths, methods, the API_KEY security scheme, and the CO2 / ETA / congestion request and response shapes below are taken directly from those live specs. Where a request or response body is only summarized here rather than fully expanded, consult the upstream per-product Swagger.'
version: '1.0'
contact:
name: Sinay
url: https://sinay.ai
servers:
- url: https://api.sinay.ai
description: Sinay Developers Platform (all products; product base path in each route)
security:
- ApiKey: []
tags:
- name: Port Congestion
description: Aggregated live port congestion data.
paths:
/congestion/api/v1/congestion/{portCode}:
get:
operationId: retrieveCongestionAggregate
tags:
- Port Congestion
summary: Retrieve aggregated congestion data for a port.
parameters:
- name: portCode
in: path
required: true
description: The port code (UN/LOCODE) of the port.
schema:
type: string
responses:
'200':
description: Aggregated congestion data for the port.
content:
application/json:
schema:
type: object
'401':
$ref: '#/components/responses/Unauthorized'
default:
$ref: '#/components/responses/Default'
/congestion/api/v1/congestion/batch:
post:
operationId: retrieveCongestionAggregateBatch
tags:
- Port Congestion
summary: Retrieve aggregated congestion data for multiple ports.
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- portCodes
properties:
portCodes:
type: array
minItems: 1
maxItems: 10
description: List of port codes (UN/LOCODE), maximum 10.
items:
type: string
example:
portCodes:
- FRLEH
- ESBCN
responses:
'200':
description: Aggregated congestion data for the requested ports.
content:
application/json:
schema:
type: object
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
components:
responses:
Default:
description: Default error response.
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorInfo'
Unauthorized:
description: The authentication failed (missing or invalid API_KEY).
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorInfo'
BadRequest:
description: The body in the request is not correct.
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorInfo'
schemas:
ErrorInfo:
type: object
required:
- errorCode
- message
- details
- time
properties:
errorCode:
type: integer
format: int32
message:
type: string
details:
type: array
items:
type: string
time:
type: string
format: date-time
securitySchemes:
ApiKey:
type: apiKey
in: header
name: API_KEY
description: API key issued by the Sinay Developers Platform, sent in the `API_KEY` request header on every call.