Validere event_categories API

Event Categories

Operations 5

GET /app/v1/event_categories List event categories #
POST /app/v1/event_categories Create an event category #
GET /app/v1/event_categories/{id} Get an event category #
PUT /app/v1/event_categories/{id} Update an event category #
DELETE /app/v1/event_categories/{id} Delete an event category #

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-event-categories-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-event-categories-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Activity Log
  title: CarbonHub activities Event Categories API
  version: 1.0.0
servers:
- url: https://api.validere.io
security:
- Staging: []
- Integration: []
- Local: []
tags:
- description: Event Categories
  name: event_categories
paths:
  /app/v1/event_categories:
    get:
      operationId: list_event_category
      parameters:
      - $ref: '#/components/parameters/EventCategoryName'
      - $ref: '#/components/parameters/EventCategoryArchived'
      - $ref: '#/components/parameters/PageSize'
      - $ref: '#/components/parameters/Page'
      - $ref: '#/components/parameters/SortBy'
      - $ref: '#/components/parameters/SortDirection'
      responses:
        '200':
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/Pagination'
                - properties:
                    data:
                      items:
                        $ref: '#/components/schemas/EventCategory'
                      type: array
                  type: object
          description: A successful operation
      summary: List event categories
      tags:
      - event_categories
    post:
      operationId: create_event_category
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EventCategoryCreate'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EventCategory'
          description: A successful operation
      summary: Create an event category
      tags:
      - event_categories
  /app/v1/event_categories/{id}:
    get:
      operationId: get_event_category
      parameters:
      - $ref: '#/components/parameters/EventCategoryId'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EventCategory'
          description: A successful operation
      summary: Get an event category
      tags:
      - event_categories
    put:
      operationId: put_event_category
      parameters:
      - $ref: '#/components/parameters/EventCategoryId'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EventCategoryUpdate'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EventCategory'
          description: A successful operation
      summary: Update an event category
      tags:
      - event_categories
    delete:
      operationId: delete_event_category
      parameters:
      - $ref: '#/components/parameters/EventCategoryId'
      responses:
        '200':
          description: A successful operation
      summary: Delete an event category
      tags:
      - event_categories
components:
  parameters:
    EventCategoryId:
      description: Event Category ID
      in: path
      name: id
      required: true
      schema:
        format: uuid
        type: string
    Page:
      description: page number
      in: query
      name: page
      required: false
      schema:
        type: number
    EventCategoryName:
      description: Event Category name
      in: query
      name: name
      required: false
      schema:
        type: string
    PageSize:
      description: page size
      in: query
      name: page_size
      required: false
      schema:
        type: number
    SortDirection:
      description: sort direction
      example: desc
      in: query
      name: sort_direction
      required: false
      schema:
        enum:
        - asc
        - desc
        type: string
    SortBy:
      description: sort by
      in: query
      name: sort_by
      required: false
      schema:
        type: string
    EventCategoryArchived:
      description: Event Category archived
      in: query
      name: archived
      required: false
      schema:
        default: false
        type: boolean
  schemas:
    Pagination:
      properties:
        page_number:
          type: number
          example: 0
        page_size:
          type: number
          example: 10
        total_entries:
          type: number
          example: 58
        total_pages:
          type: number
          example: 6
      type: object
    EventCategoryCreate:
      properties:
        name:
          type: string
          maxLength: 100
        archived:
          type: boolean
      type: object
    EventCategory:
      allOf:
      - $ref: '#/components/schemas/EventCategoryCreate'
      - properties:
          id:
            format: uuid
            type: string
          company_id:
            format: uuid
            type: string
          created_at:
            format: date-time
            type: string
          updated_at:
            format: date-time
            type: string
      type: object
    EventCategoryUpdate:
      properties:
        name:
          type: string
          maxLength: 100
        archived:
          type: boolean
      type: object