Stedi Eligibility PDF API

The Eligibility PDF API from Stedi — 1 operation(s) for retrieving a rendered PDF of an X12 271 eligibility response.

Operations 1

GET /eligibility-manager/eligibility-checks/{eligibilityCheckId}/pdf #

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/stedi-eligibility-pdf-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

stedi-eligibility-pdf-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact:
    email: healthcare@stedi.com
  license:
    name: Proprietary
    url: https://stedi.com
  title: Stedi Manager Eligibility PDF API
  version: '2024-04-01'
servers:
- description: Production
  url: https://manager.us.stedi.com/2024-04-01
security:
- httpApiKeyAuth: []
tags:
- name: Eligibility PDF
paths:
  /eligibility-manager/eligibility-checks/{eligibilityCheckId}/pdf:
    get:
      description: Retrieve a PDF version of the 271 benefits response for the specified eligibility check
      externalDocs:
        description: Developer guide
        url: https://www.stedi.com/docs/healthcare/eligibility-pdf
      operationId: GetEligibilityCheckPdf
      parameters:
      - description: "The globally unique identifier for this eligibility check across all Stedi accounts. It's formatted as `ec_<uuid>`. For example: `ec_550e8400-e29b-41d4-a716-446655440000`. You can find it:\n  - In the `id` property of the real-time JSON, Raw X12, and SOAP eligibility check endpoint responses.\n  - In the `items[].id` property of the Poll Batch Eligibility Checks endpoint response.\n  - On the eligibility check's details page within the Stedi portal."
        examples:
          GetEligibilityCheckPdf_example1:
            description: ''
            summary: Retrieve PDF
            value: ec_019d24cf-89d6-75b3-81e8-8ba6a655572e
        in: path
        name: eligibilityCheckId
        required: true
        schema:
          description: "The globally unique identifier for this eligibility check across all Stedi accounts. It's formatted as `ec_<uuid>`. For example: `ec_550e8400-e29b-41d4-a716-446655440000`. You can find it:\n  - In the `id` property of the real-time JSON, Raw X12, and SOAP eligibility check endpoint responses.\n  - In the `items[].id` property of the Poll Batch Eligibility Checks endpoint response.\n  - On the eligibility check's details page within the Stedi portal."
          type: string
      responses:
        '200':
          content:
            application/pdf:
              examples:
                GetEligibilityCheckPdf_example1:
                  description: ''
                  summary: Retrieve PDF
                  value: JVBERi0xLjQKJcfsj6IKNSAwIG9iago......
              schema:
                $ref: '#/components/schemas/GetEligibilityCheckPdfOutputPayload'
          description: GetEligibilityCheckPdf 200 response
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PdfRenderLimitExceededExceptionResponseContent'
          description: PdfRenderLimitExceededException 400 response
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedExceptionResponseContent'
          description: UnauthorizedException 401 response
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccessDeniedExceptionResponseContent'
          description: AccessDeniedException 403 response
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResourceNotFoundExceptionResponseContent'
          description: ResourceNotFoundException 404 response
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalFailureExceptionResponseContent'
          description: InternalFailureException 500 response
        '504':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GatewayTimeoutExceptionResponseContent'
          description: GatewayTimeoutException 504 response
      tags:
      - Eligibility PDF
components:
  schemas:
    GatewayTimeoutExceptionResponseContent:
      description: The eligibility check PDF could not be generated within the allotted time.
      properties:
        code:
          type: string
        message:
          type: string
      required:
      - message
      type: object
    InternalFailureExceptionResponseContent:
      description: The server response when an unexpected error occurred while processing request.
      properties:
        code:
          description: Error classification code
          type: string
        message:
          description: Human-readable error message
          type: string
      required:
      - message
      type: object
    UnauthorizedExceptionResponseContent:
      description: The server response when the authorizer failed to authenticate the caller.
      properties:
        code:
          description: Error classification code
          type: string
        message:
          description: Human-readable error message
          type: string
      required:
      - message
      type: object
    ResourceNotFoundExceptionResponseContent:
      description: The server response when the specified resource cannot be found after an API request passes authentication and authorization.
      properties:
        code:
          description: Error classification code
          type: string
        message:
          description: Human-readable error message
          type: string
      required:
      - message
      type: object
    GetEligibilityCheckPdfOutputPayload:
      contentEncoding: byte
      description: A binary blob containing the Eligibility Check PDF.
      type: string
    AccessDeniedExceptionResponseContent:
      description: The server response for authorization failure.
      properties:
        code:
          description: Error classification code
          type: string
        message:
          description: Human-readable error message
          type: string
      required:
      - message
      type: object
    PdfRenderLimitExceededExceptionResponseContent:
      description: The eligibility response is too large to render as a PDF.
      properties:
        code:
          type: string
        message:
          type: string
      required:
      - message
      type: object
  securitySchemes:
    httpApiKeyAuth:
      description: A [Stedi API Key](https://portal.stedi.com/app/settings/api-keys) for authentication.
      in: header
      name: Authorization
      type: apiKey
x-amazon-apigateway-binary-media-types:
- application/pdf
- application/octet-stream
x-stedi:
  lifecycle: general_availability
  product: manager
  public: true