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/validere-measurement-types-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:
description: Activity Log
title: CarbonHub activities Measurement Types API
version: 1.0.0
servers:
- url: https://api.validere.io
security:
- Staging: []
- Integration: []
- Local: []
tags:
- description: Manage Measurement Types
name: measurement_types
paths:
/app/v1/measurement_types:
get:
operationId: list_measurement_types
parameters:
- $ref: '#/components/parameters/MeasurementTypeSubjectId'
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/MeasurementTypeList'
description: successful operation
summary: Get Measurement Type List
tags:
- measurement_types
/app/v2/measurement_types:
get:
operationId: list_measurement_types_v2
parameters:
- $ref: '#/components/parameters/MeasurementTypeSubjectId'
responses:
'200':
content:
application/json:
schema:
items:
allOf:
- $ref: '#/components/schemas/MeasurementTypeV2'
- properties:
default_unit_info:
$ref: '#/components/schemas/MeasurementTypeUnitConfig'
type: object
type: array
description: successful operation
summary: Get Measurement Type List
tags:
- measurement_types
/app/v1/measurement_quantities:
get:
operationId: list_measurement_quantities
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/MeasurementQuantityList'
description: successful operation
summary: Get Measurement Quantity List
tags:
- measurement_types
/app/v1/measurement_units:
get:
operationId: list_all_measurement_units
responses:
'200':
content:
application/json:
schema:
items:
$ref: '#/components/schemas/MeasurementTypeUnitConfig'
type: array
description: successful operation
summary: Get Measurement Unit List
tags:
- measurement_types
/app/v1/measurement_units/{quantity}:
get:
operationId: list_measurement_units
parameters:
- $ref: '#/components/parameters/MeasurementQuantityId'
responses:
'200':
content:
application/json:
schema:
items:
$ref: '#/components/schemas/MeasurementTypeUnitConfig'
type: array
description: successful operation
summary: Get Measurement Unit List for a quantity
tags:
- measurement_types
components:
schemas:
MeasurementTypeDataType:
type: string
enum:
- int
- float
MeasurementType:
properties:
data_type:
$ref: '#/components/schemas/MeasurementTypeDataType'
id:
type: string
name:
type: string
units:
items:
type: string
type: array
type: object
MeasurementTypeUnitConfig:
properties:
name:
properties:
singular:
type: string
plural:
type: string
symbol:
type: string
type: object
to_anchor:
type: number
anchor_shift:
type: number
quantity:
type: string
id:
type: string
type: object
MeasurementQuantityList:
items:
properties:
id:
type: string
name:
type: string
type: object
type: array
MeasurementTypeV2:
properties:
id:
type: string
name:
type: string
quantity:
type: string
default_unit:
type: string
type: object
MeasurementTypeList:
items:
$ref: '#/components/schemas/MeasurementType'
type: array
parameters:
MeasurementQuantityId:
description: ID of the measurement quantity
in: path
name: quantity
required: true
schema:
type: string
MeasurementTypeSubjectId:
description: ID of the entity you want to list the measurement types for
in: query
name: subject_id
required: false
schema:
format: uuid
type: string