Supergood | ABA Billing Services API
ABA Billing Services is a billing and revenue cycle management service focused on Applied Behavior Analysis (ABA) providers. In plain English: they help ABA clinics get paid—handling authorizations, eligibility checks, claims submission, posting remittances, and denial follow-up. An unofficial API would let you programmatically read and update authorizations, validate and submit sessions, build 837 claims, track payer statuses, and reconcile ERA/EOBs without living in spreadsheets and portals.
If you’re another healthcare tech company—say an EHR, scheduling platform, or RCM analytics tool—integrating with ABA Billing Services means you can pull patient insurance details, authorizations, session validation results, claim statuses and remittances; push patient/provider rosters, billable session logs, and corrections with audit trails; and build features like authorization-aware scheduling, automatic claims assembly, real-time denial worklists, and utilization dashboards.
Programmatically access authorizations, eligibility verification, session validation, claims submission, and remittance posting in ABA Billing Services with a stable REST API. Supergood builds and operates production-grade, unofficial ABA Billing Services integrations so your team can automate critical ABA billing pipelines without heavy custom engineering.
If you’re a clinic, provider group, or revenue cycle team, integrating your tech stack with ABA Billing Services unlocks concrete data flows and features:
- Pull: Patient profiles, insurance policies, authorizations, session validation statuses, claim statuses, ERA/EOB summaries, denial codes
- Push: New/updated patients and providers from your EHR, billable session logs (CPT/H-codes), corrected claims with compliant reason codes, appeal packets
- Build: Authorization-aware scheduling, automated unit management, 837P/I generation, real-time reimbursement and denial dashboards, credentialing status tracking
What is ABA Billing Services?
ABA Billing Services provides billing and revenue cycle management solutions tailored to ABA therapy practices. Their services and tools span benefit verification, authorization management, documentation review, claims submission (commercial and Medicaid), posting of remittances, and denial follow-up, alongside education and coding resources specific to ABA (e.g., 97151, 97153, 97155, 97158 and Medicaid H-codes).
Core product areas include:
- Authorization and benefit verification
- Patient/client and provider rosters (BCBAs, RBTs)
- Session documentation review and validation against payer rules
- Claims generation and submission (837P/I) with payer-specific formatting
- ERA/EOB posting, reconciliation, and denial management
- Credentialing status tracking and payer enrollment support
Common data entities:
- Patients/Clients (demographics, coverage, eligibility)
- Providers (BCBA, RBT, supervising provider relationships, NPIs)
- Authorizations (payer, service code, units, date ranges)
- Sessions/Encounters (date/time, CPT/H-codes, modifiers, minutes/units, POS, diagnosis codes)
- Claims (service lines built from validated sessions)
- Remittances (ERA/EOB summaries, payments, adjustments, denial codes)
- Payers and plans
- Credentialing records (enrollment steps, effective dates)
The ABA Billing Services Integration Challenge
Organizations rely on ABA Billing Services to keep cash flowing, but turning portal-driven RCM workflows into automated pipelines is hard:
- Payer-specific rules: Each commercial plan and Medicaid program enforces distinct codes, modifiers, POS, time rounding, and supervision requirements
- Strong enterprise security: SSO/MFA and strict account controls complicate headless automation
- Portal-first delivery: Authorization tracking, documentation review, and ERA posting often live in web apps or batch exports, not public APIs
- EDI and timing windows: Clearinghouse submissions, SFTP feeds, and batching constraints must be respected
- Compliance nuances: Session edits require compliant reason codes and audit trails; retention policies and PHI controls vary by payer
- COB and multi-payer flows: Primary/secondary submissions and resubmissions add complexity to orchestration
How Supergood Creates ABA Billing Services APIs
Supergood reverse-engineers authenticated browser flows, batch interfaces, and network interactions to deliver a resilient API endpoint layer.
- Handles username/password, SSO/OAuth, and MFA (SMS, email, TOTP) securely
- Maintains session continuity with automated refresh and change detection
- Normalizes authorizations, sessions, claims, and ERA objects so you can integrate once across payers
- Aligns with customer entitlements and licensing constraints to ensure compliant access
- Bridges clearinghouse and SFTP/EDI flows with signed URL retrieval and file delivery where applicable
Use Cases
EHR-to-Billing Synchronization
- Push patient and provider rosters from your EHR (e.g., CentralReach, WebABA, Rethink) into ABA Billing Services
- Create billable session records automatically from your scheduling system with correct CPT/H-codes, modifiers, place of service, and supervising BCBA
- Maintain a single source of truth for demographics, coverage, and eligibility
Authorization-Aware Scheduling and Utilization
- Validate authorizations before session creation and time entry
- Track remaining units by code and prevent over-utilization
- Surface payer-specific rules to care coordinators and schedulers
Session Validation and Documentation
- Pull validation results (e.g., minutes rounding, required supervision, modifier checks) and route issues to staff
- Apply compliant reason codes on session edits with audit trails
- Lock documentation prior to claim generation for clean submissions
Claims Generation and Reimbursement Automation
- Bundle validated sessions into 837P/I claims with payer-specific formatting and diagnosis pointers
- Submit via the configured channel (payer portal or clearinghouse) and receive status updates
- Post ERAs/EOBs, reconcile payments and adjustments, and route denials to worklists
Audit and Compliance
- Export session packets with timestamps, codes, modifiers, POS, supervising provider, and reason codes
- Maintain machine-readable audit trails aligned to payer requirements
- Prove claim provenance from authorization to remittance during reviews
Available Endpoints
Authentication
POST /sessions: Establish a session using credentials. Supergood manages MFA (SMS, email, TOTP) and SSO/OAuth when enabled. Returns a short-lived auth token maintained by the platform.
curl --request POST \
--url https://api.supergood.ai/integrations/<integration_id>/sessions \
--header 'Authorization: Basic <Base64 encoded token>' \
--header 'Content-Type: application/json' \
--data '{
"username": "[email protected]",
"password": "<password>",
"mfa": {
"type": "totp",
"code": "123456"
}
}'
Example response
{
"authToken": "eyJhbGciOi...",
"expiresIn": 3600,
"user": {
"id": "u_12af7c",
"name": "Billing Admin",
"entitlements": ["authorizations", "sessions", "claims", "remittances"]
}
}
Authorizations
GET /authorizations: Retrieve payer/member service authorizations with allowed units, service codes, and date ranges. Use this to validate session creation and claim eligibility.
Query parameters
- patientId: string
- providerId: string
- serviceCode: string (CPT/H-code)
- activeOn: ISO 8601 date
- payerId: string
Example response
{
"items": [
{
"authorizationId": "auth_7342c1",
"authorizationNumber": "PA-2026-11872",
"patientId": "pat_9b42f0",
"patientName": "Jordan Patel",
"providerId": "prv_41cf92",
"payerId": "payer_bcbs_tx",
"planName": "BCBS TX PPO",
"serviceCode": "97153",
"modifiers": ["U1"],
"unitsAuthorized": 960,
"unitsRemaining": 732,
"unitType": "minutes",
"startDate": "2026-01-01",
"endDate": "2026-03-31",
"status": "active"
}
],
"page": 1,
"pageSize": 50,
"total": 1
}
Service Sessions
POST /service-sessions: Create or update a billable ABA session record with CPT/H-codes, time, POS, and supervising provider metadata. Supports compliant edit reason codes and validation.
curl --request POST \
--url https://api.supergood.ai/integrations/<integration_id>/service-sessions \
--header 'Authorization: Bearer <authToken>' \
--header 'Content-Type: application/json' \
--data '{
"patientId": "pat_9b42f0",
"renderingProvider": {"id": "prv_2aa99", "npi": "1234567890", "role": "RBT"},
"supervisingProvider": {"id": "prv_9bb22", "npi": "0987654321", "role": "BCBA"},
"authorizationId": "auth_7342c1",
"payerId": "payer_bcbs_tx",
"cptCode": "97153",
"modifiers": ["U1"],
"dateOfService": "2026-01-19",
"startTime": "2026-01-19T14:02:33Z",
"endTime": "2026-01-19T15:01:47Z",
"minutes": 60,
"units": 4,
"placeOfService": "12",
"dxCodes": ["F84.0"],
"notes": "Discrete trial training; parent present for part of session.",
"editReasonCodes": [],
"referenceId": "ehr-visit-42391"
}'
Example response
{
"sessionId": "sess_58d3e0",
"status": "validated",
"validation": {
"eligibleAuthorization": true,
"minutesRounded": 60,
"requiredSupervisionMet": true,
"modifierCheck": "passed"
},
"exceptions": [],
"createdAt": "2026-01-19T15:02:02Z",
"referenceId": "ehr-visit-42391"
}
Claims
POST /claims: Assemble an 837P/I claim from validated sessions. Supergood normalizes service lines and can route the generated file to the configured submission channel.
curl --request POST \
--url https://api.supergood.ai/integrations/<integration_id>/claims \
--header 'Authorization: Bearer <authToken>' \
--header 'Content-Type: application/json' \
--data '{
"claimType": "837P",
"payerId": "payer_bcbs_tx",
"billingProvider": {
"npi": "2012345678",
"taxonomy": "Behavioral Health",
"name": "BrightPath ABA Services",
"billingAddress": {
"line1": "100 Therapy Way",
"city": "Austin",
"region": "TX",
"postalCode": "78701"
}
},
"patient": {
"id": "pat_9b42f0",
"memberId": "M123456789",
"name": "Jordan Patel"
},
"lines": [
{"sessionId": "sess_58d3e0", "units": 4, "cptCode": "97153", "modifiers": ["U1"], "placeOfService": "12", "diagnosisPointers": ["1"]}
],
"submissionChannel": "clearinghouse",
"referenceId": "billing-batch-jan19"
}'
Example response
{
"claimId": "clm_71af2b",
"status": "queued",
"edi": {"format": "837P", "size": 43210},
"submissionChannel": "clearinghouse",
"createdAt": "2026-01-19T16:05:42Z",
"reviewUrl": "https://download.ababilling.example/signed/abc123...",
"referenceId": "billing-batch-jan19"
}
Technical Specifications
- Authentication: Username/password with MFA (SMS, email, TOTP) and SSO/OAuth where enabled; supports service accounts or customer-managed credentials
- Response format: JSON with consistent resource schemas and pagination
- Rate limits: Tuned for enterprise throughput while honoring licensing and usage controls
- Session management: Automatic reauth and cookie/session rotation with health checks
- Data freshness: Near real-time retrieval of authorizations, sessions, claims, and remittance artifacts
- Security: Encrypted transport, scoped tokens, and audit logging; respects ABA Billing Services entitlements and compliance requirements
- Webhooks: Optional asynchronous delivery for validation results, claim generation, and remittance updates
Performance Characteristics
- Latency: Sub-second responses for list/detail queries under normal load
- Throughput: Designed for high-volume session ingestion and batch claims pipelines
- Reliability: Retry logic, backoff, and idempotency keys minimize duplicate actions
- Adaptation: Continuous monitoring for UI/API changes with rapid adapter updates
Getting Started
- Schedule Integration Assessment
Book a 30-minute session to confirm your ABA Billing Services product mix, licensing, and authentication model.
- Supergood Builds and Validates Your API
We deliver a hardened ABA Billing Services adapter tailored to your workflows and entitlements.
- Deploy with Monitoring
Go live with continuous monitoring and automatic adjustments as ABA Billing Services evolves.
Frequently Asked Questions
Q: Which ABA Billing Services products can this integration cover?
Supergood supports workflows across commonly used ABA Billing Services portals and agency-facing tools, subject to your licensing and entitlements. We scope coverage (e.g., authorizations, documentation validation, claim assembly, ERA/EOB posting) during integration assessment.
Q: How are MFA, SSO, and batch interfaces handled for automation?
We support username/password + MFA (SMS, email, TOTP) and can operate behind SSO/OAuth when enabled. For batch flows, we manage clearinghouse/SFTP timing windows, generate 837 files, and retrieve signed URLs or delivery confirmations programmatically.
Q: Can I generate claims directly from validated sessions?
Yes. You can assemble 837P/I from validated sessions with payer-specific formatting. We can route submissions via your configured channel (payer portals or clearinghouse) and return statuses and artifacts for reconciliation.
Related Integrations
CentralReach API - Programmatically access CentralReach with Supergood
Ready to automate your ABA Billing Services workflows?
Supergood can have your ABA Billing Services integration live in days with no ongoing engineering maintenance.