LogoLogo
StatusChangelogDashboardCreate a Ticket
  • Getting Started
  • Intro to APIs
  • How to Contact us
  • How to Go-Live
  • Intro to Risk
  • Intro to Spec Sheets
  • Product Guides
    • Deposit Hub
      • 🌎Global Cash
    • Credit Hub
    • Payment Accounts
    • ID Score
  • API References
    • OAuth
      • OAuth Object Details
      • Create OAuth Key
      • Generate Refresh Token
    • Users
      • User Object Details
      • Testing on UAT
      • View All Users
      • View User
      • Create User
      • Update User
      • Generate UBO Doc
      • Manage Duplicates
      • Allowed Document Types
      • Allowed Entity Scopes
      • Allowed Entity Types
    • Nodes
      • Node Object Details
      • Testing on UAT
      • View all User Nodes
      • View Node
      • Create Node
      • Update Node
      • Generate eCash Barcode
      • Allowed Node Types
      • View ATMs
    • Subnets
      • Subnet Object Details
      • Testing on UAT
      • View all Node Subnets
      • View Subnet
      • Create Subnet
      • Update Subnet
      • Push to Wallet
    • Shipments
      • Shipment Object Details
      • View all Subnet Shipments
      • View Shipment
      • Create Shipment
      • Cancel Shipment
    • Statements
      • Statement Object Details
      • View all User Statements
      • View all Node Statements
    • Transactions
      • Transaction Object Details
      • Testing on UAT
      • View all User Transactions
      • View all Node Transactions
      • View Transaction
      • Create Transaction
      • Create Batch Transactions
      • Cancel Transaction
      • Retry ACH Transaction
      • Dispute Chargebacks
      • Dispute Transaction
    • Subscriptions
      • Subscription Object Details
      • Webhook Object Details
      • Testing on UAT
      • View all Subscriptions
      • View Subscription
      • Create Subscription
      • Update Subscription
      • View Webhook Logs
    • Miscellaneous
      • Dummy Transactions
      • Verify Address
      • Verify Routing Number
      • International WIRE-INT Required Data by Country
      • View Billers
      • View Enriched Data
      • Loan Limits
      • Transaction Decisioning
      • 3D Secure
      • Virtual Terminal
      • Pre-Authorization
      • Card Disputes Guide
      • Mobile Wallets
      • Interchange Revenue
      • Enrichment Guide
  • Developer Guides
    • User Onboarding
      • Create User Flow
      • Authenticate as the User
      • Create Node Flow
        • Cash Advance
        • Credit Builder Loan
        • One Time Loans
        • Secured Open Loans
        • Secured Revolving Loans
        • Unsecured Revolving Loans
      • Create Subnets Flow
        • Creating Cards
        • Creating AC/RT
      • Linking External Accounts
        • Linking Cards
        • Linking External Bank Account
      • Add Additional Documents
    • Account Details
      • Displaying Balances
      • Transaction History
      • Transaction Details
      • Account Agreements
      • Node Statements
      • Card Details
    • Managing Cards
      • Card Preferences
      • Setting PIN
      • Mobile Wallet Flow
        • Integrate with Apple Pay
        • Integrate with Google Pay
        • Integrate with Samsung Pay
      • Shipping Cards
    • Originating Transactions
      • Sending Fed Wires
      • Sending ACH Transfers
      • Sending International Wires
      • Deposit a Check
      • Issuing Checks
      • Recurring Transactions
      • 3rd Party Payment Accounts
      • Cancelling Transactions
      • Exceeding Origination Limits
    • Receiving Transactions
      • Transaction Decisioning
      • Receiving ACH / Wires
      • Card Transactions
      • Exceeding Inbound Limits
    • Managing Disputes
      • ACH Disputes
      • Card Disputes
    • 3rd Party Integrations
      • Payment Integrations
      • Account Aggregators
      • 3rd Parties & Compliance
  • Recipes
    • Overdraft Protection
    • Social Banking
    • Monetizing Transactions
Powered by GitBook
On this page
  • View Billers
  • Biller Name Options
  • Example Request

Was this helpful?

Export as PDF
  1. API References
  2. Miscellaneous

View Billers

View Billers

GET https://api.synapsefi.com/v3.1/billers

This endpoint allows you to view biller info for RPPS nodes.

Query Parameters

Name
Type
Description

filter

string

MongoDB filter to enable search by biller_name type of functionality.

per_page

integer

Maximum documents to return per page. Default and max allowed is 20.

page

integer

Page number of the paginated request. Default is 1.

Headers

Name
Type
Description

Content-Type

string

This value should be application/json

{
  "billers": [
    {
      "_id": "5ec329342aadcf1f40b661ae",
      "biller_id": "8543660183",
      "biller_name": "AAA INSURANCE",
      "biller_type": "Test"
    }
    ...
  ],
  "page_count": 2,
  "error_code": "0",
  "http_code": "200",
  "page": 1
}

Biller Name Options

The following values are available for biller_name search option.

Biller Name Options

'Airline', 'Auto Finance', 'Bank Card', 'Cable', 'Church', 'Club / Membership', 'College Savings Plan', 'DSL - ISP', 'Debt Management', 'Electric / Gas / Power / Water', 'Financial Services', 'Gas / Oil Card', 'Healthcare Services', 'Homeowners Association', 'Insurance', 'Mortgage', 'Municipality', 'Other', 'Personal Banking (checking, savings, etc.)', 'Phone', 'Rental Properties', 'Retail', 'Sanitation', 'Satellite Radio', 'Satellite TV', 'School / Car / Bank Loan & Finance', 'Schools & Educational Services', 'Security Systems / Monitoring Services', 'Subscription', 'Taxes', 'Tuition', 'Wireless - Phone'

Example Request

GET /v3.1/billers?filter={"biller_name":"INSURANCE"} HTTP/1.1
Host: uat-api.synapsefi.com
Content-Type: application/json
curl --location -g --request GET 'https://uat-api.synapsefi.com/v3.1/billers?filter={%22biller_name%22:%22INSURANCE%22}' \
--header 'Content-Type: application/json'
//
//
//
//
//
PreviousInternational WIRE-INT Required Data by CountryNextView Enriched Data

Last updated 2 years ago

Was this helpful?