GetMyInvoices
Retrieve invoices, documents, attachments and suppliers from GetMyInvoices, the German invoice & document management platform by fino data services GmbH (Kassel).
7 天免费 · 无需信用卡 · EU 托管
问 GetMyInvoices 任何事
通过 AnythingMCP 对 GetMyInvoices 试一个真实提示 — Claude 调用工具并返回答案。在你的消息上按 Enter 即可在 Cloud 安装。
在 Cloud 上安装 GetMyInvoicesClaude 是 AI,可能会出错。请核对回答。
2 分钟设置
- 1在 cloud.anythingmcp.com 开始免费试用。
- 2在连接器商店点击 GetMyInvoices。提示时粘贴凭据。
- 3生成 MCP API 密钥,将 AI 客户端指向生成的 MCP URL。
配置 GetMyInvoices
直接来自连接器定义:在哪里获取凭据、需要哪些权限,以及该适配器调用的是哪个 API。 由连接器作者以英文提供。
GetMyInvoices (operated by fino data services GmbH, Kassel) automatically collects invoices and documents from thousands of online portals and mailboxes. This connector wraps the v3 Accounts API at https://api.getmyinvoices.com/accounts/v3.
Authentication
Generate an API key in the GetMyInvoices web app via the top-right menu → 'API access'. Set it as GETMYINVOICES_API_KEY. The connector sends it in the X-API-KEY header on every request. (Note: the older v1/v2 Go/PHP SDKs use a POST body api_key — that is NOT v3; v3 uses the header.)
Core concepts
- Documents (
/documents) — the single resource for every document, including invoices, discriminated bydocumentType(e.g.INCOMING_INVOICE,SALES_INVOICE,RECEIPT,CREDIT_NOTE,PAYROLL). UsedocumentTypeFilterto narrow. - Companies (
/companies) — in GetMyInvoices terminology these are suppliers / online portals the documents come from. - Attachments — extra files linked to a document under
/documents/{documentUid}/attachments.
Pagination (documents only)
GET /documents is paginated with perPage (default 500) and pageNumber (default 1). The response envelope carries totalCount, maxPages, offset and the records array. Iterate pageNumber up to maxPages. GET /companies returns a plain array with no pagination.
Incremental sync & file content
- Use
updatedOrNewSinceFilter=YYYY-MM-DDto fetch only documents created or modified since a date — ideal for syncing. - To get the actual file bytes, call
getmyinvoices_get_document(it returnsfileContentas base64, plusmeta_dataand OCRreadableContent). SetincludeDocument=falsewhen you only need metadata.
Rate limits
The API enforces per-minute and per-hour limits and returns X-RateLimit-Remaining-* headers plus Retry-After on HTTP 429 — respect those values and back off.