Celcoin AnnotationCompetenceCalendar API

The AnnotationCompetenceCalendar API from Celcoin — 1 operation(s) for annotationcompetencecalendar.

Operations 1

GET /annotation-competence-calendar

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/celcoin-annotationcompetencecalendar-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

celcoin-annotationcompetencecalendar-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: billissuance-settlement-webservice Annotation Competence Calendar API
  version: v1.0.0
servers:
- url: https://sandbox.openfinance.celcoin.dev/billissuance/v1
tags:
- name: AnnotationCompetenceCalendar
paths:
  /annotation-competence-calendar:
    get:
      tags:
      - AnnotationCompetenceCalendar
      parameters:
      - name: QueryType
        in: query
        schema:
          $ref: '#/components/schemas/AnnotationCompetenceCalendarQueryType'
      - name: CompetencePeriod
        in: query
        schema:
          type: string
          format: date-time
      - name: ConsigneeId
        in: query
        schema:
          type: string
          format: uuid
      - name: AgencyId
        in: query
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AnnotationCompetenceCalendarResponse'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    AnnotationCompetenceCalendarResponse:
      type: object
      properties:
        consultedCompetencePeriod:
          type:
          - string
          - 'null'
        currentCompetencePeriod:
          type:
          - string
          - 'null'
        startCompetencePeriod:
          type:
          - string
          - 'null'
        endCompetencePeriod:
          type:
          - string
          - 'null'
        initNotificationInfoDate:
          type:
          - string
          - 'null'
        endNotificationInfoDate:
          type:
          - string
          - 'null'
        initLimitBookkeepingDate:
          type:
          - string
          - 'null'
        endLimitBookkeepingDate:
          type:
          - string
          - 'null'
        paymentTransferDocDate:
          type:
          - string
          - 'null'
        limitTransferDate:
          type:
          - string
          - 'null'
      additionalProperties: false
    Errs:
      type: object
      properties:
        code:
          type:
          - string
          - 'null'
        message:
          type:
          - string
          - 'null'
      additionalProperties: false
    AnnotationCompetenceCalendarQueryType:
      enum:
      - COMPETENCE_INFO
      - CALENDAR_DETAILS
      type: string
    ErrorResponse:
      type: object
      properties:
        correlationId:
          type:
          - string
          - 'null'
        status:
          type:
          - string
          - 'null'
        errors:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/Errs'
      additionalProperties: false
  securitySchemes:
    Bearer:
      type: http
      description: Autenticação utilizando JTW Bearer Token
      scheme: Bearer
      bearerFormat: JWT