Agicap Interests statements API

The Interests statements API from Agicap — 1 operation(s) for interests statements.

Operations 1

GET /public/intragroup-financing/v1/entities/{entityId}/financings/{financingId}/interests-statement Get interests statement of financing #

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/agicap-interests-statements-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

agicap-interests-statements-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact: {}
  title: Clients AR Account reports Interests statements API
  version: v1
servers:
- url: https://api.agicap.com
- url: https://api.agicap.internal
tags:
- name: Interests statements
paths:
  /public/intragroup-financing/v1/entities/{entityId}/financings/{financingId}/interests-statement:
    get:
      description: Retrieve the interests statement belonging to financing specified in the url.
      operationId: InterestsStatement_GetInterestsStatementOfFinancing
      parameters:
      - in: path
        name: entityId
        required: true
        schema:
          type: string
      - in: path
        name: financingId
        required: true
        schema:
          format: uuid
          type: string
      - description: Offset value. Minimum 0. Default 0.
        in: query
        name: offset
        schema:
          format: int32
          maximum: 2147483647
          minimum: 0
          type: integer
      - description: Limit value. Minimum 1. Maximum 100. Default 50.
        in: query
        name: limit
        schema:
          format: int32
          maximum: 2147483647
          minimum: 1
          type: integer
      - description: Date format is YYYY-MM-DD
        in: query
        name: fromDate
        schema:
          format: date
          type: string
      - description: Date format is YYYY-MM-DD
        in: query
        name: untilDate
        schema:
          format: date
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InterestsStatementResourcePublic'
          description: An interests statement of financing.
        '401':
          description: Unauthorized request.
        '403':
          description: Forbidden request.
        '429':
          description: Too many requests. Please try again later.
        '500':
          content:
            application/problem+json:
              schema:
                oneOf:
                - $ref: '#/components/schemas/ProblemDetails'
                - $ref: '#/components/schemas/HttpValidationProblemDetails'
          description: An internal server occurred.
      security:
      - bearer_client_credentials:
        - agicap:public-api
      - bearerAuth: []
      summary: Get interests statement of financing
      tags:
      - Interests statements
components:
  schemas:
    RepaymentResourcePublic:
      additionalProperties: false
      allOf:
      - $ref: '#/components/schemas/TransactionResourcePublic'
      - additionalProperties: false
        properties:
          capital:
            format: double
            type: number
          interests:
            format: double
            type: number
          total:
            format: double
            type: number
        type: object
      title: Repayment
    TransactionResourcePublic:
      additionalProperties: false
      properties:
        date:
          format: date
          type: string
      title: Transaction
      type: object
    DailyPositionResourcePublic:
      additionalProperties: false
      properties:
        accruedInterests:
          format: double
          type: number
        balance:
          format: double
          type: number
        date:
          format: date
          type: string
        drawDown:
          format: double
          type:
          - number
          - 'null'
        periodInterests:
          format: double
          type: number
        repayment:
          format: double
          type:
          - number
          - 'null'
        transactions:
          items:
            oneOf:
            - $ref: '#/components/schemas/DrawDownResourcePublic'
            - $ref: '#/components/schemas/RepaymentResourcePublic'
            title: Transaction
          type:
          - array
          - 'null'
      title: DailyPosition
      type: object
    DrawDownResourcePublic:
      additionalProperties: false
      allOf:
      - $ref: '#/components/schemas/TransactionResourcePublic'
      - additionalProperties: false
        properties:
          amount:
            format: double
            type: number
        type: object
      title: DrawDown
    Offset:
      additionalProperties: false
      properties:
        current:
          format: int32
          type: integer
        limit:
          format: int32
          type: integer
        next:
          format: int32
          type: integer
        previous:
          format: int32
          type: integer
      type: object
    HttpValidationProblemDetails:
      additionalProperties: false
      allOf:
      - $ref: '#/components/schemas/ProblemDetails'
      - additionalProperties: {}
        properties:
          errors:
            additionalProperties:
              items:
                type: string
              type: array
            type: object
        type: object
    InterestsStatementResourcePublic:
      additionalProperties: false
      properties:
        items:
          items:
            $ref: '#/components/schemas/DailyPositionResourcePublic'
          type: array
        offset:
          $ref: '#/components/schemas/Offset'
      title: InterestsStatement
      type: object
    ProblemDetails:
      additionalProperties: false
      properties:
        detail:
          type:
          - string
          - 'null'
        instance:
          type:
          - string
          - 'null'
        status:
          format: int32
          type:
          - integer
          - 'null'
        title:
          type:
          - string
          - 'null'
        type:
          type:
          - string
          - 'null'
      type: object
  securitySchemes:
    bearer:
      bearerFormat: JWT
      scheme: bearer
      type: http
    bearerAuth:
      bearerFormat: OPAQUE
      scheme: bearer
      type: http