List Estimates
GET/api/v1/gfe/
Retrieves a list of all Good Faith Estimate associated with your account.
Request
Query Parameters
A page number within the paginated result set.
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
Array [
draft
- Draftpending
- Pendingfinalized
- Finalizedre-opened
- Re-Openedarchived
- Archiveddeleted
- Deletedcash
- Cashinsurance
- InsuranceArray [
]
Array [
- TypeEnum
- StateEnum
Array [
draft
- Draftnegotiating
- Negotiatingrejected
- Rejectedaccepted
- Acceptedfinalized
- Finalized]
]
- StateEnum
email
- Emailphone
- Phonemail
- Mail]
123
http://api.example.org/accounts/?page=4
http://api.example.org/accounts/?page=2
results
object[]
required
Possible values: [draft
, pending
, finalized
, re-opened
, archived
, deleted
]
Possible values: [cash
, insurance
]
additional_services
object[]
Possible values: <= 255 characters
Instructions for obtaining a good faith estimate for the service/item, such as provider/facility name, address, phone number, and email
providers
object[]
required
type
object
nullable
oneOf
string
Possible values: [convening_provider
, co_provider
, facility_provider
]
Possible values: <= 120 characters
Possible values: <= 120 characters
address
object
Possible values: <= 255 characters
state
object
nullable
oneOf
string
Possible values: [AL
, AK
, AZ
, AR
, CA
, CO
, CT
, DE
, DC
, FL
, GA
, HI
, ID
, IL
, IN
, IA
, KS
, KY
, LA
, ME
, MD
, MA
, MI
, MN
, MS
, MO
, MT
, NE
, NV
, NH
, NJ
, NM
, NY
, NC
, ND
, OH
, OK
, OR
, PA
, RI
, SC
, SD
, TN
, TX
, UT
, VT
, VA
, WA
, WV
, WI
, WY
]
Possible values: <= 20 characters
Possible values: <= 255 characters
Possible values: <= 10 characters
Possible values: <= 10 characters
Possible values: <= 254 characters
items
object[]
required
Possible values: <= 120 characters
Possible values: <= 30 characters
Possible values: <= 255 characters
ICD Code, if required for calculation.
Possible values: <= 255 characters
Possible values: >= -2147483648
and <= 2147483647
Actual cost
Possible values: Value must match regular expression ^-?\d{0,12}(?:\.\d{0,2})?$
Possible values: [draft
, negotiating
, rejected
, accepted
, finalized
]
patient
object
required
Possible values: <= 150 characters
Possible values: <= 150 characters
Possible values: <= 150 characters
Date of birth in the format YYYY-MM-DD
Possible values: <= 10 characters
Possible values: <= 254 characters
Last four digits.
Possible values: <= 4 characters
address
object
Possible values: <= 255 characters
state
object
nullable
oneOf
string
Possible values: [AL
, AK
, AZ
, AR
, CA
, CO
, CT
, DE
, DC
, FL
, GA
, HI
, ID
, IL
, IN
, IA
, KS
, KY
, LA
, ME
, MD
, MA
, MI
, MN
, MS
, MO
, MT
, NE
, NV
, NH
, NJ
, NM
, NY
, NC
, ND
, OH
, OK
, OR
, PA
, RI
, SC
, SD
, TN
, TX
, UT
, VT
, VA
, WA
, WV
, WI
, WY
]
Possible values: <= 20 characters
Possible values: <= 255 characters
Possible values: <= 50 characters
Possible values: [email
, phone
, mail
]
{
"count": 123,
"next": "http://api.example.org/accounts/?page=4",
"previous": "http://api.example.org/accounts/?page=2",
"results": [
{
"uuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"status": "draft",
"payment_type": "cash",
"additional_services": [
{
"uuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"provider_info": "string"
}
],
"providers": [
{
"uuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"type": "convening_provider",
"npi": "string",
"tin": "string",
"address": {
"address1": "string",
"address2": "string",
"city": "string",
"state": "AL",
"zip_code": "string"
},
"contact_name": "string",
"phone": "string",
"fax": "string",
"email": "user@example.com",
"additional_notes": "string",
"items": [
{
"uuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"service_description": "string",
"type": "string",
"billing_code": "string",
"code_type": "string",
"diagnosis_code": "string",
"address_being_performed": "string",
"quantity": 0,
"estimated_cost": "string",
"subtotal_cost": "string",
"status": "draft"
}
],
"created_at": "2024-09-20T22:06:01.844Z",
"updated_at": "2024-09-20T22:06:01.844Z"
}
],
"insurance_name": "string",
"patient": {
"first_name": "string",
"mi": "string",
"last_name": "string",
"date_of_birth": "2024-09-20",
"phone_number": "string",
"email_address": "user@example.com",
"account_number": "string",
"address": {
"street": "string",
"city": "string",
"state": "AL",
"zip_code": "string"
},
"insurance_name": "string",
"member_id": "string",
"request_date": "2024-09-20",
"contact_preference": "email"
},
"created_at": "2024-09-20T22:06:01.844Z",
"updated_at": "2024-09-20T22:06:01.844Z"
}
]
}