Validere charts API

Charts

Operations 4

POST /app/v1/charts Create a chart #
DELETE /app/v1/charts/{id} Delete a chart #
GET /app/v1/charts/{id} Get a chart #
PUT /app/v1/charts/{id} Update a Chart #

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/validere-charts-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

validere-charts-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Activity Log
  title: CarbonHub activities Charts API
  version: 1.0.0
servers:
- url: https://api.validere.io
security:
- Staging: []
- Integration: []
- Local: []
tags:
- description: Charts
  name: charts
paths:
  /app/v1/charts:
    post:
      operationId: create_chart
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ChartCreate'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Chart'
          description: A successful operation
      summary: Create a chart
      tags:
      - charts
  /app/v1/charts/{id}:
    delete:
      operationId: delete_chart
      parameters:
      - $ref: '#/components/parameters/ChartId'
      responses:
        '200':
          description: A successful operation
      summary: Delete a chart
      tags:
      - charts
    get:
      operationId: get_chart
      parameters:
      - $ref: '#/components/parameters/ChartId'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Chart'
          description: A successful operation
      summary: Get a chart
      tags:
      - charts
    put:
      operationId: put_chart
      parameters:
      - $ref: '#/components/parameters/ChartId'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ChartUpdate'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Chart'
          description: A successful operation
      summary: Update a Chart
      tags:
      - charts
components:
  schemas:
    Chart:
      properties:
        created_at:
          format: date-time
          type: string
        created_by:
          format: uuid
          type: string
        dashboard_id:
          format: uuid
          type: string
        id:
          format: uuid
          type: string
        json:
          type: object
        name:
          type: string
        updated_at:
          format: date-time
          type: string
      type: object
    ChartUpdate:
      properties:
        json:
          type: object
        name:
          example: 'Chart #1'
          type: string
      type: object
    ChartCreate:
      properties:
        dashboard_id:
          type: string
          format: uuid
        json:
          type: object
        name:
          example: 'Chart #1'
          type: string
      type: object
  parameters:
    ChartId:
      description: Chart ID
      in: path
      name: id
      required: true
      schema:
        format: uuid
        type: string