Rillet Tax rates API

The Tax rates API from Rillet — 1 operation(s) for tax rates.

Operations 1

GET /tax-rates Lists all tax rates #

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/rillet-tax-rates-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

rillet-tax-rates-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Rillet Accounting Tax rates API
  version: v4.0
servers:
- url: https://api.rillet.com
  description: Production server url
- url: https://sandbox.api.rillet.com
  description: Test server url
security:
- bearerAuth: []
tags:
- name: Tax rates
paths:
  /tax-rates:
    get:
      tags:
      - Tax rates
      operationId: list-all-tax-rates
      summary: Lists all tax rates
      description: Returns all available tax rates. Use the returned IDs when creating bills with specific tax codes.
      parameters:
      - name: country
        in: query
        required: false
        description: Two-letter country code (ISO 3166-1 alpha-2). If provided, only tax rates for that country are returned.
        schema:
          $ref: '#/components/schemas/CountryCode'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                required:
                - tax_rates
                type: object
                properties:
                  tax_rates:
                    type: array
                    items:
                      $ref: '#/components/schemas/TaxRateResource'
        default:
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      required:
      - type
      - title
      properties:
        type:
          type: string
          format: uri
          description: A URI reference that identifies the error type.
          example: https://rillet.io/forbidden
        title:
          type: string
          description: Summary of the problem.
          example: Forbidden
        status:
          type: integer
          description: The HTTP status code generated by the origin server for this occurrence of the error.
          example: 403
        detail:
          type: string
          description: Explanation specific to this occurrence of the error.
          example: User does not have rights to perform this operation.
    TaxRateResource:
      type: object
      required:
      - id
      - code
      - country
      - description
      - percentage
      properties:
        id:
          type: string
          format: uuid
        code:
          type: string
          example: IE_STANDARD
        country:
          $ref: '#/components/schemas/CountryCode'
        description:
          type: string
          example: Standard Rate
        percentage:
          type: string
          example: '23.0000'
    CountryCode:
      type: string
      description: Two-letter country code (ISO 3166-1 alpha-2).
      example: US
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
x-mcp-ready: true
x-readme:
  headers:
  - key: X-Rillet-API-Version
    value: '4'