Help Center
Everything you need to use Muvelo Finance effectively. Browse the guides or search below.
🚀 Quick Start Guide
👤 Account & Login
💳 Plans & Billing
🔍 Funding Search & Explorer
The Funding Explorer (sidebar → Funding Explorer) lets you search and filter the entire database of 1,018 funding organizations across 144 countries, 52 categories, and 2,514 contacts.
Keyword Search
Search by organization name, acronym, description, tags, or sectors. Results update in real time as you type.
Region Filter
Filter by world region: Africa, Asia, Europe, Americas, Middle East, GCC, or Global.
Category Filter
52 categories including climate funds, DFIs, SWFs, venture capital, Islamic finance, guarantees, mezzanine, and more.
Ticket Size Filter
Filter by minimum funding amount: $1M+, $10M+, $50M+, or $100M+.
Advanced Filters Pro
Filter by HQ country, funding instrument (Grant, Loan, Equity…), SDG goal, Islamic finance compliance, GCF accreditation, green bond eligibility.
Quick Toggles
One-click toggles for Islamic Finance, Foundations, Family Offices, Dev Banks, Climate Funds, and Open Now calls.
Excel Export Pro
Export the current filtered results to a formatted Excel file with all funder metadata.
Pagination
Results paginated at 24 per page with prev/next/jump navigation and total count.
🎯 Smart Matching Engine
The Match Engine v2 scores every funder in the database against your project across 18 dimensions. Each dimension is weighted by relevance to financing success in development and climate finance contexts.
📁 Project Workspace
Project Creation
4-step wizard: sector & entity type → location → financing needs → description & SDGs. Takes 2–5 minutes.
Project List
Card grid of all your projects with status, sector, and match count. Edit or delete any project.
Funding Pipeline
Kanban board (Identified → Preparing → Submitted → Under Review → Awarded) to track each application status.
AI Match Results
Each project gets a ranked list of funding matches with scores, reasons, and contacts.
Timeline Pro
AI-generated funding timeline showing which funders to approach in which order and when.
Documents Pro
Generate and store all application documents per project: Concept Note, Executive Summary, Pitch Deck, Risk Analysis, and more.
Saved Funders
Bookmark funders to your favorites list with personal notes.
GTS Score Pro
Grant Transformation Score — 8-pillar assessment of your project's fundability rating (0–1000).
📄 Document Generator
📞 CRM — Contact & Relationship Manager
Contact Database
Full CRUD for funding contacts with title, email, phone, LinkedIn, institution, region, and role. 2,514+ pre-loaded contacts.
Interaction Timeline
Log meetings, calls, emails, and follow-ups per contact with timestamps and notes.
AI Outreach Message
Generate personalized outreach emails to funding contacts using AI, based on your project and the funder's focus areas.
Campaigns
Create multi-contact email campaigns with message sequencing and follow-up scheduling.
Organization History
View and log the full relationship history with any funding institution — what was submitted, when, and the outcome.
KPI Dashboard
CRM stats: total contacts in outreach, replied, meetings booked, funded relationships, and overdue follow-ups.
Follow-up Reminders
Set and track follow-up dates per contact. The CRM dashboard flags overdue items.
Excel Export Pro
Export your entire contact list or filtered results to Excel in one click.
📊 Dashboard
The main dashboard (first page after login) aggregates live data from all platform modules into a single overview. It refreshes every time you open it.
KPI Tiles
Total funders, open opportunities, total funding volume in database, and countries covered.
Top Recommended Funders
AI-scored ranking of the funders most likely to match your active projects, updated after each match run.
Deadline Alerts
Upcoming funding deadlines across all tracked opportunities — color-coded by urgency.
Opportunities Feed
Live funding opportunities from World Bank, AfDB, ADB, GCF, IATI, OECD, UN, OCHA, EIB, and more.
SDG Coverage Map
Visual breakdown of how many funders in the database cover each of the 17 UN Sustainable Development Goals.
Smart Recommendations
Contextual recommendations based on your projects and recent activity.
📈 GTS Score Engine
The GTS (Grant Transformation Score) evaluates your project across 8 key pillars that funders and grant committees typically assess. The score ranges from 0 to 1000.
Impact Potential
Does the project address a significant, measurable problem? How many beneficiaries does it reach?
Financial Viability
Is the budget realistic? Are financial projections credible? Is there a revenue model?
Team Capacity
Does the team have the experience and institutional capacity to execute?
Innovation
Does the approach use new technology, a new model, or solve a gap in a novel way?
Sustainability
Will the project continue after the grant ends? Is there a path to financial independence?
Climate Alignment
Does the project address climate change mitigation, adaptation, or environmental resilience?
SDG Alignment
How many UN Sustainable Development Goals does the project contribute to?
Implementation Readiness
How ready is the team to start? Are legal, regulatory, and operational conditions met?
🌱 Climate Finance Module
Climate Assessment
Advanced analysis of your project's climate impact, mitigation potential, and adaptation relevance.
Climate Funders
Filtered view of all climate-specific funders: GCF, GEF, Adaptation Fund, LDCF, SCCF, EIB, AfDB Green H2, and more.
Carbon Instruments
Carbon credit analysis: which buyers (Microsoft, Stripe/Frontier, South Pole) are appropriate for your project type.
SDG Alignment Matrix
Visual matrix of how your project aligns with each SDG and the funders that prioritize those goals.
GCF Accredited Funders
Filter to show only GCF-accredited national implementing entities and multilateral implementing entities.
Quick Assessment
Fast climate eligibility check without a full project — useful for initial scoping.
⚡ Public REST API
POST /api/auth/login.Base URL
https://your-instance.finance.greentheris.com/api
Authentication
POST /api/auth/login
Content-Type: application/json
{
"email": "you@example.com",
"password": "your-password"
}
Response:
{
"token": "eyJhbGciOiJIUzI1NiIs...",
"user": { "id": 1, "email": "...", "name": "..." }
}
Key Endpoints
GET /api/funds — Search funders (filters: search, region, category, hq_country, sdg, islamic, gcf...) GET /api/funds/:id — Get funder details GET /api/funds/:id/contacts — Get funder contacts GET /api/funds/meta — Get categories and countries for dropdowns GET /api/funds/stats — Platform statistics POST /api/match/quick — Anonymous quick match (no auth required) POST /api/match/analyze/:pid — Run AI match for a project (auth required) GET /api/match/results/:pid — Get match results GET /api/intel/opportunities — Live funding opportunities GET /api/intel/deadlines — Upcoming deadlines
Rate Limits
All authenticated endpoints: 100 requests/minute. Analysis endpoints (match, generate): 10 requests/15 minutes. Webhook endpoints: no limit.
🔒 Security & Privacy
JWT Authentication
All sessions use HS256-signed JWTs with 7-day expiry. Tokens are stored in localStorage and sent as Bearer headers.
Password Security
Passwords are hashed with bcrypt (cost factor 10). Plain-text passwords are never stored or logged.
Rate Limiting
API endpoints are rate-limited (100 req/min general, 5 req/min login, 10 req/15min AI). Prevents brute-force and abuse.
OWASP Headers
Helmet.js sets security headers: CSP, HSTS, X-Frame-Options, X-Content-Type-Options, and Referrer-Policy on all responses.
Role-Based Access
Three roles: user (default), admin. Admin routes are protected by adminRequired middleware. Plan-gated routes enforce subscription tiers.
Audit Logs
All login, registration, and key actions are logged in the activity_log table with timestamps and user IDs.
Data Encryption
All traffic is encrypted via HTTPS/TLS in production. Database credentials are stored in environment variables, never in code.
GDPR Compliance
Users can request data export or deletion. No personal data is sold or shared with third parties. Privacy Policy at /privacy.html.