ECI Solutions Carriers API

The Carriers API from ECI Solutions — 3 operation(s) for carriers.

Operations 3

GET /api/v1/carrier-types/{carrierType}/service-levels Gets Service Levels #
GET /api/v1/carriers Get Carriers #
GET /api/v1/carriers/{id} Get Carrier #

Documentation

Specifications

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/eci-solutions-carriers-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

eci-solutions-carriers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Shipping Carriers API
  description: Shipping Service API which provides integration with shipping services for shipping rates, purchasing labels, and tracking shipments.
  version: 1.3.6+a49f73049e
security:
- Bearer: []
tags:
- name: Carriers
paths:
  /api/v1/carrier-types/{carrierType}/service-levels:
    get:
      tags:
      - Carriers
      summary: Gets Service Levels
      description: Gets the list of service levels available for a given carrier type.
      operationId: GetCarrierTypeServiceLevels
      parameters:
      - name: carrierType
        in: path
        description: ''
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ServiceModelListResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceModelListResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/ServiceModelListResponse'
  /api/v1/carriers:
    get:
      tags:
      - Carriers
      summary: Get Carriers
      description: 'Returns a list of available carriers.


        Notes:

        - When using an EasyPost Testing API Key, this endpoint will always return an empty list.'
      operationId: GetCarriersList
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/CarrierModelListResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/CarrierModelListResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/CarrierModelListResponse'
  /api/v1/carriers/{id}:
    get:
      tags:
      - Carriers
      summary: Get Carrier
      description: 'Gets an available carrier by ID.


        Notes:

        - When using an EasyPost Testing API Key, this endpoint will always return 404.'
      operationId: GetCarrierById
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/CarrierModel'
            application/json:
              schema:
                $ref: '#/components/schemas/CarrierModel'
            text/json:
              schema:
                $ref: '#/components/schemas/CarrierModel'
components:
  schemas:
    ServiceModelListResponse:
      type: object
      properties:
        value:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/ServiceModel'
      additionalProperties: false
    ServiceModel:
      type: object
      properties:
        id:
          type:
          - string
          - 'null'
          description: The service id
        displayName:
          type:
          - string
          - 'null'
          description: The service name
        description:
          type:
          - string
          - 'null'
          description: The service description
        carrierType:
          type:
          - string
          - 'null'
          description: The carrier id
        maxWeight:
          type:
          - number
          - 'null'
          description: Maximum weight of the parcel for this service
          format: double
        notes:
          type:
          - string
          - 'null'
          description: Additional information about the service level.
      additionalProperties: false
      description: Represents a shipping service offered by a carrier.
    CarrierModel:
      type: object
      properties:
        id:
          type:
          - string
          - 'null'
          description: The carrier id
        displayName:
          type:
          - string
          - 'null'
          description: The service name
        type:
          type:
          - string
          - 'null'
          description: The type of carrier
      additionalProperties: false
      description: Carrier
    CarrierModelListResponse:
      type: object
      properties:
        value:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/CarrierModel'
      additionalProperties: false
  securitySchemes:
    Bearer:
      type: oauth2
      description: OAuth 2.0 Client Credentials Flow with API Users issued from Integration Engine Management Console
      flows:
        clientCredentials:
          tokenUrl: https://api-user.integrations.ecimanufacturing.com/oauth2/api-user/token
          scopes:
            openid: openid