---
updatedAt: 2026-07-17T18:00:07.000Z
---

Fetch the complete documentation index at: https://developers.pismo.io/pismo-docs/llms.txt. Use this file to discover all available pages before exploring further.

# List fee models

Get an organization's fee models. The org ID is derived from the access token.

# OpenAPI definition

```json
{
  "openapi": "3.1.0",
  "info": {
    "title": "Platform setup - Rates and fees",
    "description": "Rates and fees API endpoint documentation.",
    "contact": {
      "name": "API Support",
      "url": "https://developers.pismo.io/support/"
    },
    "license": {
      "name": "Copyright Pismo"
    },
    "version": "1.0.0"
  },
  "servers": [
    {
      "url": "https://sandbox.pismolabs.io/rates",
      "description": "Sandbox API server for testing"
    }
  ],
  "tags": [
    {
      "name": "Fee models",
      "description": "Fee model endpoints."
    }
  ],
  "security": [
    {
      "bearerAuth": []
    }
  ],
  "components": {
    "schemas": {
      "BadRequestError": {
        "type": "object",
        "properties": {
          "error_code": {
            "type": "string",
            "description": "Error code ID",
            "example": "RCAPI-INVALID-REQUEST-PAYLOAD"
          },
          "message": {
            "type": "string",
            "description": "Error description",
            "example": "The request payload is invalid"
          }
        }
      },
      "Error": {
        "type": "object",
        "properties": {
          "error_code": {
            "type": "string",
            "example": "RCAPI-DOMAIN-VIOLATION",
            "description": "Error code ID."
          },
          "message": {
            "type": "string",
            "example": "Internal server error",
            "description": "Error description."
          }
        }
      },
      "ModelID": {
        "type": "number",
        "description": "Pismo fee model ID",
        "example": 455586868
      },
      "ModelList": {
        "type": "array",
        "items": {
          "$ref": "#/components/schemas/ModelListItem"
        }
      },
      "ModelListItem": {
        "type": "object",
        "required": [
          "model_id",
          "description",
          "updated_at",
          "has_program_attachment",
          "has_org_attachment",
          "has_account_attachment"
        ],
        "properties": {
          "model_id": {
            "$ref": "#/components/schemas/ModelID"
          },
          "description": {
            "type": "string",
            "description": "Fee description.",
            "example": "Foreign currency surchange."
          },
          "updated_at": {
            "type": "string",
            "description": "Model update date.",
            "example": "2022-07-27T17:37:23.000Z"
          },
          "has_program_attachment": {
            "type": "boolean",
            "description": "Identifies whether the model has an attachment per program",
            "example": false
          },
          "has_org_attachment": {
            "type": "boolean",
            "description": "Identifies whether the model has an attachment per org",
            "example": false
          },
          "has_account_attachment": {
            "type": "boolean",
            "description": "Identifies whether the model has an attachment per account",
            "example": false
          }
        }
      }
    },
    "securitySchemes": {
      "bearerAuth": {
        "type": "http",
        "scheme": "bearer",
        "bearerFormat": "JWT"
      }
    },
    "responses": {
      "400BadRequestError": {
        "description": "Bad request",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/BadRequestError"
            }
          }
        }
      },
      "401Unauthorized": {
        "description": "InvalidToken",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/Error"
            }
          }
        }
      },
      "500InternalServerError": {
        "description": "Internal Server Error",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/Error"
            }
          }
        }
      }
    }
  },
  "paths": {
    "/v1/fee/models": {
      "get": {
        "tags": [
          "Fee models"
        ],
        "summary": "List fee models",
        "description": "Get an organization's fee models. The org ID is derived from the access token.",
        "operationId": "listModel",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ModelList"
                }
              }
            }
          },
          "400": {
            "$ref": "#/components/responses/400BadRequestError"
          },
          "401": {
            "$ref": "#/components/responses/401Unauthorized"
          },
          "500": {
            "$ref": "#/components/responses/500InternalServerError"
          }
        }
      }
    }
  }
}
```