OpenAPI SDK readiness

The Plaid API OpenAPI spec score

Octri scored the public spec at https://raw.githubusercontent.com/plaid/plaid-openapi/master/2020-09-14.yml for what a code generator can do with it. This is a reading of the document, not a grade of the API.

7.8/ 10
Mixed

351 operations · 2410 models · 1 tag · OpenAPI 3.0.0

Scored 14 September 2026 · fingerprint 141de8aaaad2… · spec version 2020-09-14_1.740.1 · server production.plaid.com

Document last changed 14 September 2026.

Where the points went

Every rule, heaviest first, with what it cost this document and how much of the surface it touched. Open a row for the locations.

  1. Successful responses declare a schema2.00.4 lost1 of 351 operations

    Without a response schema every method returns `unknown`/`any`, so callers get no types and no autocompletion.

    • POST /fdx/notifications `fdxNotifications` declares a success response with no schema, so the generated method returns an untyped value.

    What this rule checks

  2. Shared models live in components and are $ref'd2.0Clean351 operations clean

    Inline object schemas become anonymous per-operation types. The same model inlined in 20 operations generates 20 near-identical types instead of one.

    What this rule checks

  3. Generated public names do not collide2.0Clean351 operations clean

    When authored identifiers collapse to the same shared public name, the generator must silently rename one method; callers otherwise cannot predict the SDK surface from the spec.

    What this rule checks

  4. Every path placeholder has a parameter1.5Clean351 operations clean

    An undeclared `{id}` placeholder cannot become a typed method argument, so the generated request path is incomplete or uncompilable.

    What this rule checks

  5. Every operation declares an operationId1.0Clean351 operations clean

    Without one the generator synthesizes a name from the path, which changes whenever the path does. That is a silent breaking change for callers.

    What this rule checks

  6. operationIds read as method names1.01.0 lost348 of 351 operations

    The id becomes the method name. `ActionsActionsGet` generates `client.actions.actionsActionsGet()`; `getActions` generates `client.actions.get()`.

    • POST /asset_report/create `assetReportCreate` reads better as `createAssetReport` at the call site.
    • POST /asset_report/get `assetReportGet` reads better as `getAssetReport` at the call site.
    • POST /asset_report/pdf/get `assetReportPdfGet` reads better as `getAssetReportPdf` at the call site.
    • POST /asset_report/refresh `assetReportRefresh` reads better as `createAssetReportRefresh` at the call site.
    • POST /asset_report/filter `assetReportFilter` reads better as `createAssetReportFilter` at the call site.
    • 343 more, not listed here.

    What this rule checks

  7. Operations carry a summary or description1.0Clean351 operations clean

    Operation prose becomes the method's doc comment, the text an IDE shows on hover.

    What this rule checks

  8. Request bodies are documented1.00.5 lost131 of 351 operations

    Body field descriptions become the doc comments on generated parameters; without them the SDK ships undocumented arguments.

    • POST /asset_report/pdf/get `assetReportPdfGet` has an undocumented request body, so every generated parameter for it will be comment-free.
    • POST /asset_report/remove `assetReportRemove` has an undocumented request body, so every generated parameter for it will be comment-free.
    • POST /cra/monitoring_insights/unsubscribe `craMonitoringInsightsUnsubscribe` has an undocumented request body, so every generated parameter for it will be comment-free.
    • POST /cra/monitoring_insights/get `craMonitoringInsightsGet` has an undocumented request body, so every generated parameter for it will be comment-free.
    • POST /cra/partner_insights/get `craPartnerInsightsGet` has an undocumented request body, so every generated parameter for it will be comment-free.
    • 126 more, not listed here.

    What this rule checks

  9. Failure responses are declared1.00.3 lost48 of 351 operations

    Declared error schemas become typed errors. Without them every failure surfaces as an untyped generic error.

    • POST /dashboard_user/get `dashboardUserGet` declares no 4xx/5xx or default response, so SDK users get no typed error for it.
    • POST /dashboard_user/list `dashboardUserList` declares no 4xx/5xx or default response, so SDK users get no typed error for it.
    • POST /identity_verification/create `identityVerificationCreate` declares no 4xx/5xx or default response, so SDK users get no typed error for it.
    • POST /identity_verification/get `identityVerificationGet` declares no 4xx/5xx or default response, so SDK users get no typed error for it.
    • POST /identity_verification/list `identityVerificationList` declares no 4xx/5xx or default response, so SDK users get no typed error for it.
    • 43 more, not listed here.

    What this rule checks

  10. Operations are tagged1.0Clean351 operations clean

    Tags drive namespacing. Untagged operations fall back to a path segment, producing lopsided or `misc` namespaces.

    What this rule checks

  11. No duplicate or equivalent paths1.0Clean360 paths clean

    Paths differing only in parameter NAME are the same route to a server; the generated SDK ends up with two methods that call the same endpoint.

    What this rule checks

  12. Authentication is described1.0CleanDeclared

    Security schemes generate the SDK's auth configuration. A spec without them produces a client with no way to authenticate.

    What this rule checks

  13. Parameters explain their purpose0.75Clean351 operations clean

    Parameter descriptions become IDE hints on generated method arguments; bare names force SDK users back to the API reference.

    What this rule checks

  14. A server URL is declared0.5CleanDeclared

    Without a server URL the generated client must ship with an empty or placeholder base URL, adding setup work and easy production misconfiguration.

    What this rule checks

Packaging, outside the score

This generates one package with 351 operations and 2410 models. Frontend consumers download all of it to call any of it, and low-spec machines pay for it in IDE and build time. The largest groups are `plaid` (351), and each is a candidate for its own project.

What 7.8 means for an SDK

A mixed reading, and the three rules that decide most of it.

The client compiles and works. Callers will feel the soft spots: a few methods that return an untyped value, arguments with no hint on them, a namespace or two named after a path segment rather than a resource.

Three rules carry six of the 10 points between them. On this document they took 0.4.

−0.4

Successful responses declare a schema

1 of 351 operations

Clean

Shared models live in components and are $ref'd

351 operations clean

Clean

Generated public names do not collide

351 operations clean

What to change first

Every rule that deducted, in the order they cost.

  1. Successful responses declare a schema

    Give the success response a schema, or a $ref to one in components. A 204 needs nothing. Inside Octri this one has a one-click fix.

  2. operationIds read as method names

    Name the id for the action, not the route. The audit suggests one per operation and can apply it. Inside Octri this one has a one-click fix.

  3. Request bodies are documented

    Describe the body, or the fields inside it. Field-level prose is the one that reaches the SDK's arguments. Inside Octri this one has a one-click fix.

  4. Failure responses are declared

    Declare the failures you actually return, or one `default` response carrying your error shape.

The spec at raw.githubusercontent.comis public. Octri keeps the `info` block, the score, and up to five sample finding locations per rule. The document itself is not stored and is not served from here. The audit predicts what an SDK generator can do with the description; it is not a security review, an uptime measurement or a critique of the API’s design. This page is not affiliated with The Plaid API or Plaid Developer Team.