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-type-metadata-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 Type Metadata API
version: 1.0.0
servers:
- url: https://api.validere.io
security:
- Staging: []
- Integration: []
- Local: []
tags:
- description: Types used across the APIs
name: type_metadata
paths:
/app/v1/custom_attribute_data_types:
get:
description: Returns the list of data types that custom attributes support
operationId: list_custom_attribute_data_types
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/CustomAttributeDataTypeList'
description: successful operation
summary: List Custom Attribute Data Types
tags:
- type_metadata
/app/v1/custom_attribute_entities:
get:
description: Returns the list of entity types that support custom attributes
operationId: list_custom_attribute_entities
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/CustomAttributeEntityTypeList'
description: successful operation
summary: List Custom Attribute Entity Types
tags:
- type_metadata
/app/v1/flow_types:
get:
description: Returns the list of flow types
operationId: list_flow_types
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/EnumIdNamePairList'
description: successful operation
summary: List Flow Types
tags:
- type_metadata
/app/v1/product_types:
get:
description: Returns the list of product types
operationId: list_product_types
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/EnumIdNamePairList'
description: successful operation
summary: List Product Types
tags:
- type_metadata
/app/v1/product_categories:
get:
description: Returns the list of product categories
operationId: list_product_categories
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/EnumIdNamePairList'
description: successful operation
summary: List Product Categories
tags:
- type_metadata
/app/v1/event_statuses:
get:
description: Returns the list of event statuses
operationId: list_event_statuses
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/EnumIdNamePairList'
description: successful operation
summary: List Event Statuses
tags:
- type_metadata
/app/v1/facility_types:
get:
description: Returns the list of facility types
operationId: list_facility_types
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/EnumIdNamePairList'
description: successful operation
summary: List Facility Types
tags:
- type_metadata
/app/v1/facility_statuses:
get:
description: Returns the list of facility statuses
operationId: list_facility_statuses
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/EnumIdNamePairList'
description: successful operation
summary: List Facility Statuses
tags:
- type_metadata
/app/v1/industry_segments:
get:
description: Returns the list of industry segments based on the US emission spreadsheet
operationId: list_industry_segment
responses:
'200':
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/CodeNamePair'
description: successful operation
summary: List Industry Segment
tags:
- type_metadata
/app/v1/workflow_template_statuses:
get:
description: Returns the list of workflow template statuses
operationId: list_workflow_template_statuses
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/EnumIdNamePairList'
description: successful operation
summary: List workflow template statuses
tags:
- type_metadata
/app/v1/workflow_statuses:
get:
description: Returns the list of workflow statuses
operationId: list_workflow_statuses
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/EnumIdNamePairList'
description: successful operation
summary: List workflow statuses
tags:
- type_metadata
/app/v1/workflow_task_statuses:
get:
description: Returns the list of workflow task statuses
operationId: list_workflow_task_statuses
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/EnumIdNamePairList'
description: successful operation
summary: List workflow task statuses
tags:
- type_metadata
components:
schemas:
AttributeTypes:
type: string
enum:
- number
- string
- geo_point
- boolean
- integer
- pick-list
- multi-pick-list
- number-array
- lookup
- date
- date-time
- file
CustomAttributeEntityType:
properties:
id:
$ref: '#/components/schemas/schemas-CustomAttributeEntityType'
name:
type: string
type: object
CustomAttributeEntityTypeList:
items:
$ref: '#/components/schemas/CustomAttributeEntityType'
type: array
CustomAttributeDataTypeList:
items:
$ref: '#/components/schemas/CustomAttributeDataType'
type: array
CodeNamePair:
type: object
properties:
code:
type: string
name:
type: string
EnumIdNamePairList:
type: array
items:
properties:
id:
type: string
description: enum value
name:
type: string
description: display name
CustomAttributeDataType:
properties:
id:
$ref: '#/components/schemas/AttributeTypes'
name:
type: string
type: object
schemas-CustomAttributeEntityType:
type: string
enum:
- equipment
- device
- facility
- flow
- asset_group