{ "aid": "swaggerhub.bebettor-dev:bebettor-api-client-wealth-1.2.1", "name": "beBettor API (Wealth Check)", "type": "Index", "description": "

FOR CLIENT USE ONLY.

This version of the documentation focuses specifically on the Wealth Check.

\n

1. Overview

The beBettor API provides an automated and scalable solution for customer affordability screening. The data we provide helps our clients improve their customer interaction frameworks, develop deeper insights into their customers and make more informed business decisions.

To learn more about our mission and approach, visit www.bebettor.com.

The beBettor API provides the following core functionality:

\n

Check

Performs an affordability screening based on the provided customer data.

Interaction flow:
    \n
  1. The client initiates a check by including the customer's personal data in the request body.

  2. \n
  3. The beBettor API processes the request and returns the checkId, score and flags.

  4. \n

\"API


\n

Report

Reports are currently not available for Wealth check type.

\n

2. Environments

The beBettor API provides two distinct environments for integration. Use the Test environment to validate your integration before going live. Once your integration is complete and tested, switch to the Production environment to begin processing real customer data.

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
EnvironmentEndpoint URL
Testhttps://sandbox-api.bebettor.com/affordability/v1
Productionhttps://api.bebettor.com/affordability/v1

\n

3. API Access

To start integrating with the beBettor API in either the Test or Production environment, the following configuration details are required.

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
ItemDescription
Score ModelThe Wealth check support more than one score model, which must be specified during integration. Let us know which score model you'd like to use and it will be applied to all of your requests.
API KeyAccess to the beBettor API requires an API key, which will be provided to you prior to integration.

\n

4. Customer Data

The table below outlines the customer personal data fields, including their type, format and constraints.

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
NoField NameData TypeFormat & ConstraintsRequired
1customerIdStringCharset: printable ASCII
Min length: 1
Max length: 100
Yes
2addressLine1StringMin length: 1
Max length: 100
Yes
3addressLine2StringMin length: 1
Max length: 100
No
4townStringMin length: 1
Max length: 100
No
5countyStringMin length: 1
Max length: 100
No
6postcodeStringValid UK postcodeYes

\n

5. Scores

A score model is selected by the client and pre-configured by beBettor during the API integration process. This model is applied by default to all check requests.

The wealth score represents a customer's relative wealth ranking within the UK.

The table below outlines the currently supported score models and their associated scores.

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Score ModelPossible Scores
GB:J21, 2, 3, 4, 5, 6, 7, 8, 9, 10
GB:J31, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20

\n

6. Flags

Wealth flags indicate additional signs of high wealth associated with the customer.

The table below outlines the currently supported flag models and their associated flags.

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Flags ModelFlagDescription
GB:J1SUPER_AFFLUENCEThis flag is triggered when the individual is identified as being in the top 1% of wealth within the Great Britain population.

\n

7. Reports

Reports are currently not available for Wealth check type.


\n

8. API Usage

The default API request rate limit is 5 requests per second for both Test and Production environments. Additionally, the Test environment includes a monthly quota limit of 500 requests. Custom rate and quota limits can be increased on request. Please contact us if you require adjustments to these defaults.

If a client exceeds the allowed rate limit, the request will be throttled and returned with an HTTP 429 Too Many Requests error response. Clients receiving throttling responses should implement appropriate retry logic. For more details, please refer to section "9. Retry Policy".

The table below outlines the current rate and quota limits for each environment.

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
EnvironmentRate LimitQuota Limit
Test5 requests per second500 requests per month, starting on the 1st day
Production5 requests per secondNo limit

\n

9. Retry Policy

\n

Errors may occur at different stages of an API request, such as due to network issues or temporary service downtime. To ensure reliability, client applications should implement a robust retry mechanism.

A widely adopted strategy is exponential backoff, which increases the delay between retry attempts following consecutive failures. This approach reduces the risk of overwhelming the server during periods of high load and improves the likelihood of successful recovery. For implementation details, refer to external documentation or use libraries that implement exponential backoff logic.

The table below outlines common HTTP status codes returned by the API and indicates whether the client should attempt a retry.

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
HTTP Status CodeMeaningRetry Required?
4xxClient-side errorNo
429Too many requests. The request was throttled.Yes
5xxServer-side errorYes

\n

10. Getting Started


Below are example API requests for two commonly used tools: cURL and Postman. The cURL examples are provided as inline code snippets, while the Postman collection file is available for download via the link provided.

API Request Examples

\n

Perform a Wealth check using the provided customer data.

\n curl -X POST \"https://sandbox-api.bebettor.com/affordability/v1/check\" \\
\n -H \"Content-Type: application/json\" \\
\n -H \"X-Api-Key: {{YOUR_API_KEY}}\" \\
\n -H \"X-BB-Check-Type: WEALTH\" \\
\n -H \"X-BB-Score-Model: {{SCORE_MODEL}}\" \\
\n -d '{\"customerId\":\"CID0001\",\"address\":{\"addressLine1\":\"25 High Street\",\"addressLine2\":\"Flat 4\",\"town\":\"London\",\"county\":\"Greater London\",\"postcode\":\"WC2H 0AW\"}}'\n

\n

Search checks that match specific criteria.

\n curl -X GET \"https://sandbox-api.bebettor.com/affordability/v1/search?checkType=WEALTH&checkDate={{CHECK_DATE}}&checkId={{CHECK_ID}}&customerId={{CUSTOMER_ID}}&pageToken={{PAGE_TOKEN}}\" \\
\n -H \"Content-Type: application/json\" \\
\n -H \"X-Api-Key: {{YOUR_API_KEY}}\"\n


\n

Postman Collection

Get started with the beBettor API by downloading the Postman collection here.


\n

11. API Error Handling

The table below outlines common API response errors, including their HTTP status codes, corresponding error codes and explanations to assist with troubleshooting and resolution.

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
HTTP Status CodeMeaningAPI Error Codes and Resolutions
400 (Bad Request)The server cannot or will not process the request due to a client-side error (e.g., malformed syntax or invalid parameters).\n REQUEST_BODY_PARSE_ERROR - Ensure that your request body is valid JSON with correct syntax and structure.

\n REQUEST_INVALID - One or more request parameters are invalid. Review the API documentation for field-specific validation rules.\n
401 (Unauthorized)The request could not be completed because it lacks valid authentication credentials for the target resource.\n AUTHENTICATION_FAILED - Ensure that the X-Api-Key header contains the correct API key for the appropriate environment (Test or Production).\n
403 (Forbidden)The server understood the request but refuses to authorize it. This means the client's identity is known, but it does not have permission to access the requested resource.\n ACCESS_DENIED - Confirm that the API endpoint URL includes the correct resource path (e.g., /v1/check, /v1/report)\n
404 (Not Found)The server could not locate the requested resource. This typically indicates that the URL is incorrect or the resource does not exist.\n RESOURCE_NOT_FOUND - For GET requests to retrieve reports, ensure that the checkId included in the URL is valid and refers to an existing check.\n
405 (Method Not Allowed)The server recognizes the requested URL, but the HTTP method used (e.g., GET, POST, PUT, DELETE) is not supported for that resource.\n METHOD_NOT_SUPPORTED - Use the appropriate HTTP method (GET or POST) as specified in the API documentation for the given resource.\n
406 (Not Acceptable)The server is unable to generate a response that matches the content type criteria specified in the request's Accept header.\n NOT_ACCEPTABLE - When requesting a report, ensure the request includes an Accept header. Use */* to receive the latest available version, or specify a particular version (e.g., application/vnd.report.gb.m2-20240521+json) to request a specific report model.\n
415 (Unsupported Media Type)The server refuses to process the request because the format of the request payload is not supported. This typically relates to the Content-Type header, which must accurately indicate the format of the request body so the server can parse it correctly.\n UNSUPPORTED_MEDIA_TYPE - Ensure that the Content-Type header is set to application/json, as this is the expected format for all request payloads sent to the beBettor API.\n
422 (Unprocessable Entity)The request was syntactically correct but contains invalid or logically inconsistent data that the server cannot process.\n POSTCODE_NOT_FOUND - The postcode format is valid but was not found in the UK postcode directory.

\n POSTCODE_NOT_COVERED - The postcode is valid but belongs to a region not supported by the check type (e.g., Channel Islands, UK overseas territories, or Northern Ireland).

\n PERSON_UNDER_18 - The individual is under 18 years of age and is not eligible for affordability screening.\n
429 (Too Many Requests)The server has received too many requests from the client in a short period of time and is enforcing rate limits to maintain system stability and performance.\n QUOTA_EXCEEDED - You have exceeded your monthly request quota in the Test environment. Please contact us if you need to request an increased limit.

\n THROTTLED - You have exceeded the API rate limit (5 requests per second). Reduce the request rate to comply with the allowed limits.\n
500 (Internal Server Error)The server encountered an unexpected condition that prevented it from fulfilling the request. This is a generic error indicating a problem on the server side, not caused by the client.\n Internal Server Error - Retry the request using an exponential backoff strategy with a reasonable number of attempts. If the issue persists and there is no planned maintenance (check status.bebettor.com), please contact support@bebettor.com for further assistance.\n

\n

12. Frequently Asked Questions (FAQs)

API

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
QuestionAnswer
What is the maximum number of requests per second we can send?The default rate limit is 5 requests per second for both Test and Production environments.
What is the average response time of the API?The average response time is under 500 milliseconds (excluding network round-trip latency).
Which UK regions are supported?The Wealth check supports all valid UK postcodes in England, Wales and Scotland.
\n

Integration Process

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
QuestionAnswer
How do we begin integration?You'll receive your API key from beBettor and can start integrating immediately.
Do you provide dummy/test data?Yes. Upon request, we can provide dummy data to support your testing needs.
Who do we contact for technical support?Reach out to our team at support@bebettor.com for assistance.
How long does integration typically take?Integration generally takes 1-2 weeks, depending on your team's resources and complexity of use cases.
How many requests are allowed during integration?By default, you are granted 500 requests per month in the Test environment.
\n

Customer Data

\n \n \n \n \n \n \n \n \n \n \n \n \n
QuestionAnswer
What is the purpose of the customerId field?It's your internal identifier used for referencing users without exposing personal data. It is included in all responses and retained for troubleshooting.
\n

Test Environment

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
QuestionAnswer
Is the Test environment the same as Production?Functionally - yes. The Production environment is faster and uses up-to-date datasets.
Can we use scores from the Test environment?No. Test results are intended for internal development and testing only. They should not be used for real decision-making.
Can we retain Test environment access after integration?Yes. You can continue using your Test credentials to validate system changes.
\n

Production Environment

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
QuestionAnswer
Do we need separate credentials for the Production environment?Yes. Test and Production environments have distinct credentials.
What should we do during system downtime or maintenance?Please queue your requests and resume once you receive confirmation that the system is back online. Maintenance windows will be announced in advance.
\n", "url": "https://raw.githubusercontent.com/jentic/jentic-public-apis/refs/heads/main/apis/openapi/swaggerhub.bebettor-dev/bebettor-api-client-wealth/1.2.1/apis.json", "tags": [ "swaggerhub.bebettor-dev", "bebettor-api-client-wealth" ], "created": "2026-04-04", "modified": "2026-04-04", "specificationVersion": "0.19", "access": "3rd-Party", "maintainers": [ { "FN": "Jentic", "X-github": "jentic", "url": "https://github.com/jentic" } ], "apis": [ { "aid": "swaggerhub.bebettor-dev:bebettor-api-client-wealth-1.2.1", "name": "beBettor API (Wealth Check)", "description": "

FOR CLIENT USE ONLY.

This version of the documentation focuses specifically on the Wealth Check.

\n

1. Overview

The beBettor API provides an automated and scalable solution for customer affordability screening. The data we provide helps our clients improve their customer interaction frameworks, develop deeper insights into their customers and make more informed business decisions.

To learn more about our mission and approach, visit www.bebettor.com.

The beBettor API provides the following core functionality:

\n

Check

Performs an affordability screening based on the provided customer data.

Interaction flow:
    \n
  1. The client initiates a check by including the customer's personal data in the request body.

  2. \n
  3. The beBettor API processes the request and returns the checkId, score and flags.

  4. \n

\"API


\n

Report

Reports are currently not available for Wealth check type.

\n

2. Environments

The beBettor API provides two distinct environments for integration. Use the Test environment to validate your integration before going live. Once your integration is complete and tested, switch to the Production environment to begin processing real customer data.

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
EnvironmentEndpoint URL
Testhttps://sandbox-api.bebettor.com/affordability/v1
Productionhttps://api.bebettor.com/affordability/v1

\n

3. API Access

To start integrating with the beBettor API in either the Test or Production environment, the following configuration details are required.

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
ItemDescription
Score ModelThe Wealth check support more than one score model, which must be specified during integration. Let us know which score model you'd like to use and it will be applied to all of your requests.
API KeyAccess to the beBettor API requires an API key, which will be provided to you prior to integration.

\n

4. Customer Data

The table below outlines the customer personal data fields, including their type, format and constraints.

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
NoField NameData TypeFormat & ConstraintsRequired
1customerIdStringCharset: printable ASCII
Min length: 1
Max length: 100
Yes
2addressLine1StringMin length: 1
Max length: 100
Yes
3addressLine2StringMin length: 1
Max length: 100
No
4townStringMin length: 1
Max length: 100
No
5countyStringMin length: 1
Max length: 100
No
6postcodeStringValid UK postcodeYes

\n

5. Scores

A score model is selected by the client and pre-configured by beBettor during the API integration process. This model is applied by default to all check requests.

The wealth score represents a customer's relative wealth ranking within the UK.

The table below outlines the currently supported score models and their associated scores.

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Score ModelPossible Scores
GB:J21, 2, 3, 4, 5, 6, 7, 8, 9, 10
GB:J31, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20

\n

6. Flags

Wealth flags indicate additional signs of high wealth associated with the customer.

The table below outlines the currently supported flag models and their associated flags.

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Flags ModelFlagDescription
GB:J1SUPER_AFFLUENCEThis flag is triggered when the individual is identified as being in the top 1% of wealth within the Great Britain population.

\n

7. Reports

Reports are currently not available for Wealth check type.


\n

8. API Usage

The default API request rate limit is 5 requests per second for both Test and Production environments. Additionally, the Test environment includes a monthly quota limit of 500 requests. Custom rate and quota limits can be increased on request. Please contact us if you require adjustments to these defaults.

If a client exceeds the allowed rate limit, the request will be throttled and returned with an HTTP 429 Too Many Requests error response. Clients receiving throttling responses should implement appropriate retry logic. For more details, please refer to section "9. Retry Policy".

The table below outlines the current rate and quota limits for each environment.

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
EnvironmentRate LimitQuota Limit
Test5 requests per second500 requests per month, starting on the 1st day
Production5 requests per secondNo limit

\n

9. Retry Policy

\n

Errors may occur at different stages of an API request, such as due to network issues or temporary service downtime. To ensure reliability, client applications should implement a robust retry mechanism.

A widely adopted strategy is exponential backoff, which increases the delay between retry attempts following consecutive failures. This approach reduces the risk of overwhelming the server during periods of high load and improves the likelihood of successful recovery. For implementation details, refer to external documentation or use libraries that implement exponential backoff logic.

The table below outlines common HTTP status codes returned by the API and indicates whether the client should attempt a retry.

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
HTTP Status CodeMeaningRetry Required?
4xxClient-side errorNo
429Too many requests. The request was throttled.Yes
5xxServer-side errorYes

\n

10. Getting Started


Below are example API requests for two commonly used tools: cURL and Postman. The cURL examples are provided as inline code snippets, while the Postman collection file is available for download via the link provided.

API Request Examples

\n

Perform a Wealth check using the provided customer data.

\n curl -X POST \"https://sandbox-api.bebettor.com/affordability/v1/check\" \\
\n -H \"Content-Type: application/json\" \\
\n -H \"X-Api-Key: {{YOUR_API_KEY}}\" \\
\n -H \"X-BB-Check-Type: WEALTH\" \\
\n -H \"X-BB-Score-Model: {{SCORE_MODEL}}\" \\
\n -d '{\"customerId\":\"CID0001\",\"address\":{\"addressLine1\":\"25 High Street\",\"addressLine2\":\"Flat 4\",\"town\":\"London\",\"county\":\"Greater London\",\"postcode\":\"WC2H 0AW\"}}'\n

\n

Search checks that match specific criteria.

\n curl -X GET \"https://sandbox-api.bebettor.com/affordability/v1/search?checkType=WEALTH&checkDate={{CHECK_DATE}}&checkId={{CHECK_ID}}&customerId={{CUSTOMER_ID}}&pageToken={{PAGE_TOKEN}}\" \\
\n -H \"Content-Type: application/json\" \\
\n -H \"X-Api-Key: {{YOUR_API_KEY}}\"\n


\n

Postman Collection

Get started with the beBettor API by downloading the Postman collection here.


\n

11. API Error Handling

The table below outlines common API response errors, including their HTTP status codes, corresponding error codes and explanations to assist with troubleshooting and resolution.

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
HTTP Status CodeMeaningAPI Error Codes and Resolutions
400 (Bad Request)The server cannot or will not process the request due to a client-side error (e.g., malformed syntax or invalid parameters).\n REQUEST_BODY_PARSE_ERROR - Ensure that your request body is valid JSON with correct syntax and structure.

\n REQUEST_INVALID - One or more request parameters are invalid. Review the API documentation for field-specific validation rules.\n
401 (Unauthorized)The request could not be completed because it lacks valid authentication credentials for the target resource.\n AUTHENTICATION_FAILED - Ensure that the X-Api-Key header contains the correct API key for the appropriate environment (Test or Production).\n
403 (Forbidden)The server understood the request but refuses to authorize it. This means the client's identity is known, but it does not have permission to access the requested resource.\n ACCESS_DENIED - Confirm that the API endpoint URL includes the correct resource path (e.g., /v1/check, /v1/report)\n
404 (Not Found)The server could not locate the requested resource. This typically indicates that the URL is incorrect or the resource does not exist.\n RESOURCE_NOT_FOUND - For GET requests to retrieve reports, ensure that the checkId included in the URL is valid and refers to an existing check.\n
405 (Method Not Allowed)The server recognizes the requested URL, but the HTTP method used (e.g., GET, POST, PUT, DELETE) is not supported for that resource.\n METHOD_NOT_SUPPORTED - Use the appropriate HTTP method (GET or POST) as specified in the API documentation for the given resource.\n
406 (Not Acceptable)The server is unable to generate a response that matches the content type criteria specified in the request's Accept header.\n NOT_ACCEPTABLE - When requesting a report, ensure the request includes an Accept header. Use */* to receive the latest available version, or specify a particular version (e.g., application/vnd.report.gb.m2-20240521+json) to request a specific report model.\n
415 (Unsupported Media Type)The server refuses to process the request because the format of the request payload is not supported. This typically relates to the Content-Type header, which must accurately indicate the format of the request body so the server can parse it correctly.\n UNSUPPORTED_MEDIA_TYPE - Ensure that the Content-Type header is set to application/json, as this is the expected format for all request payloads sent to the beBettor API.\n
422 (Unprocessable Entity)The request was syntactically correct but contains invalid or logically inconsistent data that the server cannot process.\n POSTCODE_NOT_FOUND - The postcode format is valid but was not found in the UK postcode directory.

\n POSTCODE_NOT_COVERED - The postcode is valid but belongs to a region not supported by the check type (e.g., Channel Islands, UK overseas territories, or Northern Ireland).

\n PERSON_UNDER_18 - The individual is under 18 years of age and is not eligible for affordability screening.\n
429 (Too Many Requests)The server has received too many requests from the client in a short period of time and is enforcing rate limits to maintain system stability and performance.\n QUOTA_EXCEEDED - You have exceeded your monthly request quota in the Test environment. Please contact us if you need to request an increased limit.

\n THROTTLED - You have exceeded the API rate limit (5 requests per second). Reduce the request rate to comply with the allowed limits.\n
500 (Internal Server Error)The server encountered an unexpected condition that prevented it from fulfilling the request. This is a generic error indicating a problem on the server side, not caused by the client.\n Internal Server Error - Retry the request using an exponential backoff strategy with a reasonable number of attempts. If the issue persists and there is no planned maintenance (check status.bebettor.com), please contact support@bebettor.com for further assistance.\n

\n

12. Frequently Asked Questions (FAQs)

API

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
QuestionAnswer
What is the maximum number of requests per second we can send?The default rate limit is 5 requests per second for both Test and Production environments.
What is the average response time of the API?The average response time is under 500 milliseconds (excluding network round-trip latency).
Which UK regions are supported?The Wealth check supports all valid UK postcodes in England, Wales and Scotland.
\n

Integration Process

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
QuestionAnswer
How do we begin integration?You'll receive your API key from beBettor and can start integrating immediately.
Do you provide dummy/test data?Yes. Upon request, we can provide dummy data to support your testing needs.
Who do we contact for technical support?Reach out to our team at support@bebettor.com for assistance.
How long does integration typically take?Integration generally takes 1-2 weeks, depending on your team's resources and complexity of use cases.
How many requests are allowed during integration?By default, you are granted 500 requests per month in the Test environment.
\n

Customer Data

\n \n \n \n \n \n \n \n \n \n \n \n \n
QuestionAnswer
What is the purpose of the customerId field?It's your internal identifier used for referencing users without exposing personal data. It is included in all responses and retained for troubleshooting.
\n

Test Environment

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
QuestionAnswer
Is the Test environment the same as Production?Functionally - yes. The Production environment is faster and uses up-to-date datasets.
Can we use scores from the Test environment?No. Test results are intended for internal development and testing only. They should not be used for real decision-making.
Can we retain Test environment access after integration?Yes. You can continue using your Test credentials to validate system changes.
\n

Production Environment

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
QuestionAnswer
Do we need separate credentials for the Production environment?Yes. Test and Production environments have distinct credentials.
What should we do during system downtime or maintenance?Please queue your requests and resume once you receive confirmation that the system is back online. Maintenance windows will be announced in advance.
\n", "image": "", "baseURL": "https://api.bebettor.com/affordability/v1", "humanURL": "https://github.com/jentic/jentic-public-apis/tree/main/apis/openapi/swaggerhub.bebettor-dev/bebettor-api-client-wealth/1.2.1", "version": "1.2.1", "tags": [ "swaggerhub.bebettor-dev", "bebettor-api-client-wealth" ], "properties": [ { "type": "OpenAPI", "name": "OpenAPI definition", "url": "https://raw.githubusercontent.com/jentic/jentic-public-apis/refs/heads/main/apis/openapi/swaggerhub.bebettor-dev/bebettor-api-client-wealth/1.2.1/openapi.json", "mediaType": "application/openapi+json" }, { "type": "GitHubRepo", "url": "https://github.com/jentic/jentic-public-apis/tree/main/apis/openapi/swaggerhub.bebettor-dev/bebettor-api-client-wealth/1.2.1" } ], "contact": [ { "FN": "support@bebettor.com", "email": "support@bebettor.com" } ] } ] }