Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the C4C REST API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fapi2.crowd4cash.ch%2Fcrowd4cash" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fapi2.crowd4cash.ch%2Fcrowd4cash" | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with C4C REST API.
Authenticate against Crowd4Cash to obtain a bearer credential for subsequent calls
List active loan opportunities so an investor agent can rank them before placing bids
Place a bid on a specific loan opportunity at a chosen amount
Retrieve a signed contract by loanId for record keeping or downstream reporting
List bids placed by the investor across the platform for review
GET STARTED
Read the current portfolio state to compute exposure or yield metrics
Patterns agents use C4C REST API for, with concrete tasks.
★ Automated Bidding on Loan Opportunities
An investor wants to bid on every loan that fits their risk criteria as soon as it opens. An agent polls /Opportunities, filters by interest rate and term, and posts /Bid for each match. Manual bidding inside the Crowd4Cash UI becomes a continuous policy-driven process.
GET /Opportunities, filter by yield criteria, then POST /Bid with the chosen amount on each qualifying loan
Portfolio Reporting for Investors
An investor with many loans needs a current view of exposure and yield. An agent calls /Portfolio for the latest position, /Bids for in-flight commitments, and /Contracts for signed agreements. The result is a single dashboard line per investor, rebuilt automatically each morning.
Pull /Portfolio, /Bids, and /Contracts, then aggregate exposure and yield by loan type
Contract Retrieval for Audit
When auditors review a loan book, they need the signed contract for every position. An agent walks the investor's contracts via /Contracts/{loanId} and /Contracts/{partnerId}/{loanId}, pulling each contract and storing it in document management. The audit pack assembles in minutes.
List the investor's contracts and call /Contracts/{loanId} for each to retrieve the full signed document
Rental Loan Specialisation
Crowd4Cash offers rental-loan products with their own contract format. An agent reads /RentalLoan to discover available rental-loan opportunities and /Contracts/RentalLoan/{loanId} for the matching contract, separating rental-loan flow from consumer and intermediary loan pipelines.
List rental-loan opportunities and retrieve each rental-loan contract for the chosen positions
AI Agent Investing via Jentic
An AI agent that manages investor capital uses Jentic to drive Crowd4Cash by intent. Searching for 'place a bid on a swiss loan' returns the right operation, the agent places bids and reads contracts with managed credentials, and surfaces yield back to the investor without ever exposing the API key.
Use Jentic to find the Crowd4Cash bidding operation, execute it with the chosen loan and amount, and read /Portfolio to confirm the bid landed
18 endpoints — jentic publishes the only available openapi specification for crowd4cash, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/Authenticate
Authenticate and obtain a bearer credential
/Opportunities
List active loan opportunities
/Bid
Place a bid on a loan opportunity
/Bids
List bids placed by the investor
/Contracts/{loanId}
Retrieve a signed contract by loanId
/Contracts/RentalLoan/{loanId}
Retrieve a rental-loan contract
/Portfolio
Read the investor portfolio
/Authenticate
Authenticate and obtain a bearer credential
/Opportunities
List active loan opportunities
/Bid
Place a bid on a loan opportunity
/Bids
List bids placed by the investor
/Contracts/{loanId}
Retrieve a signed contract by loanId
/Contracts/RentalLoan/{loanId}
Retrieve a rental-loan contract
/Portfolio
Read the investor portfolio
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the C4C REST API by hand means calling its Authenticate step for an API key, learning the opportunity and contract resource shapes, and assembling bids yourself. Through Jentic you install once, import C4C from the API Directory, store the key once, and your agent calls it.
Permission scoping
C4C takes the bid target in the request body, so scope the agent to the operations it needs, such as browsing opportunities and reading your portfolio, and leave out placing a bid unless you add it. You choose the allowed operations, so the agent only calls what you list.
Credential isolation
Your C4C API key is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'list loan opportunities' or 'read my portfolio', and Jentic returns the matching C4C operation with its input schema so the agent calls the right endpoint without browsing the reference docs.
Alternatives and complements available in the Jentic catalogue.
Stripe
Stripe handles fiat payment rails that Crowd4Cash investors might use for funding the platform off-API.
Pair them when the investor's funding flow runs through Stripe and the lending decisions through Crowd4Cash.
Specific to using C4C REST API through Jentic.
Why is there no official OpenAPI spec for Crowd4Cash?
Crowd Solutions AG, the operator of Crowd4Cash, does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call C4C REST API via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.
What authentication does the Crowd4Cash API use?
Crowd4Cash uses an API-key style bearer credential. Call POST /Authenticate to exchange your investor credentials for a bearer token, then send the token in the Authorization header on subsequent calls. Through Jentic, the credential is held in the credential vault and injected at execution time.
Can I place a bid on a loan with the API?
Yes. POST /Bid with the loanId and bid amount places a bid on an active opportunity. List your placed bids with GET /Bids and your signed contracts with GET /Contracts/{loanId} once a bid converts into a position.
What are the rate limits for the Crowd4Cash API?
The spec does not declare numeric rate limits. Crowd4Cash enforces fair-use throttling on /Opportunities and /Bid. Build retries with backoff and avoid tight polling - read /Opportunities at most every few seconds when watching for new openings.
How do I bid on a Crowd4Cash opportunity through Jentic?
Install the SDK with `pip install jentic`. Search Jentic for `place a bid on a crowd4cash loan`, load the schema for POST /Bid, and execute it with the loanId and amount. Jentic handles authentication so the agent never sees the raw bearer token.
Are rental loans handled separately?
Yes. Rental loans have their own opportunity endpoint /RentalLoan and contract retrieval /Contracts/RentalLoan/{loanId}. Standard and intermediary loans use /Loan, /IntermediaryLoan, and /Contracts/{loanId}.
Can I limit what my agent is allowed to do with the Crowd4Cash API?
Yes. Because Jentic One is self-hosted, you decide which Crowd4Cash operations your agent may call, so you can grant read-only access such as listing opportunities with GET /Opportunities and reading positions with GET /Portfolio while leaving out POST /Bid. Since the bid target is passed in the request body, an agent cannot place a bid unless you have explicitly added that operation to its allowed set. Your own rules govern which operations and stored credentials the agent uses, so it only calls what you list.
Know of an official OpenAPI document? Contribute it →
For Agents
Browse Swiss crowdlending opportunities, place bids, manage signed contracts, and read portfolio state on Crowd4Cash through an 18-endpoint REST API.
Use for: Authenticate to Crowd4Cash and get a session token, List the active Crowd4Cash loan opportunities, Place a bid on a specific loan opportunity, Retrieve all my Crowd4Cash bids
Not supported: Does not handle KYC onboarding, fiat funding rails, or tax reporting - use for browsing loan opportunities, placing bids, and reading contracts and portfolio state only.
Jentic publishes the only available OpenAPI specification for Crowd4Cash, keeping it validated and agent-ready. Crowd4Cash is a Swiss crowdlending platform that connects investors with consumer, intermediary, and rental loan opportunities. The API exposes loan listings, opportunity feeds, bidding, contracts, and portfolio access so that investor partners can place bids, manage contracts, and pull portfolio state programmatically. Use it to integrate Swiss crowdlending into a partner platform without building bespoke screen scrapers.