Discover/kiva.org API
live

kiva.org APIkiva.org

Access Kiva microfinance data: search loans by country, sector, and status; get borrower details, lender lists, field partner metrics, and impact updates.

Endpoints
6
Updated
3mo ago
Try it
Page number for pagination.
Sort order. Accepted values: newest, oldest, popularity, expiring_soon.
Keyword search query to filter loans.
Gender filter. Accepted values: male, female.
Sector name to filter by (e.g. Agriculture, Food, Education, Services, Transportation).
Loan status filter. Accepted values: fundraising, funded, in_repayment, ended, refunded.
Number of results per page.
ISO 2-letter country code to filter by (e.g. KE, UG, PH, ID).
api.parse.bot/scraper/7fbbf24d-53fb-4694-b158-66bb655583d1/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/7fbbf24d-53fb-4694-b158-66bb655583d1/search_loans?page=1&status=fundraising&per_page=5' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 6 totalclick to expand

Search for loans with various filters including status, sector, country, gender, and keyword. Returns paginated results sorted by the specified order.

Input
ParamTypeDescription
pageintegerPage number for pagination.
sortstringSort order. Accepted values: newest, oldest, popularity, expiring_soon.
querystringKeyword search query to filter loans.
genderstringGender filter. Accepted values: male, female.
sectorstringSector name to filter by (e.g. Agriculture, Food, Education, Services, Transportation).
statusstringLoan status filter. Accepted values: fundraising, funded, in_repayment, ended, refunded.
per_pageintegerNumber of results per page.
country_codestringISO 2-letter country code to filter by (e.g. KE, UG, PH, ID).
Response
{
  "type": "object",
  "fields": {
    "loans": "array of loan summaries with id, name, status, sector, loan_amount, location, and other fields",
    "paging": "object containing page, total, page_size, and pages"
  },
  "sample": {
    "data": {
      "loans": [
        {
          "id": 3175343,
          "use": "to buy more tailor machine so she can grow her business.",
          "name": "Asih",
          "tags": [],
          "image": {
            "id": 6232617,
            "template_id": 1
          },
          "sector": "Services",
          "status": "fundraising",
          "activity": "Tailoring",
          "location": {
            "town": "Serang",
            "country": "Indonesia",
            "country_code": "ID"
          },
          "partner_id": 406,
          "description": {
            "languages": [
              "en"
            ]
          },
          "loan_amount": 250,
          "posted_date": "2026-05-14T11:41:29Z",
          "lender_count": 0,
          "basket_amount": 0,
          "funded_amount": 0,
          "borrower_count": 1
        }
      ],
      "paging": {
        "page": 1,
        "pages": 960,
        "total": 4796,
        "page_size": 5
      }
    },
    "status": "success"
  }
}

About the kiva.org API

The Kiva API provides 6 endpoints covering microfinance loans, borrower profiles, lender contributions, field partners, and impact journal entries. Use search_loans to filter active and historical loans by country code, sector, gender, and status, then retrieve full borrower details, repayment terms, and payment schedules via get_loan_details. Partner data — including risk ratings, countries served, and financial metrics — is available through get_partners and get_partner_details.

Loan Search and Filtering

search_loans accepts up to eight filter parameters: status (fundraising, funded, in_repayment, ended, refunded), sector (Agriculture, Food, Education, etc.), country_code (ISO 2-letter), gender, and a freetext query. Results are paginated with page and per_page controls, and can be sorted by newest, oldest, popularity, or expiring_soon. Each result in the loans array includes id, name, status, sector, loan_amount, and location fields, plus a paging object with total, page_size, and pages.

Loan Detail and Activity

get_loan_details takes a loan_id from search results and returns a single loan object with full description texts, borrower names and profiles, repayment terms, and a payments schedule. get_loan_lenders returns a paginated lenders array for that loan, useful for understanding community participation. get_loan_updates returns journal_entries — field-posted progress updates — paginated by page, allowing you to track loan lifecycle events over time.

Field Partner Data

get_partners lists Kiva's microfinance institution partners with id, name, status, rating, countries, and financial metrics in each object of the partners array. Pagination is controlled by page and per_page. get_partner_details accepts a partner_id and returns the full partner object with the same fields at single-record resolution. Partner risk ratings and country coverage make this endpoint useful for building trust or geographic filtering logic into lending tools.

Identifiers and Traversal

The six endpoints form a natural traversal chain: loan IDs from search_loans feed into get_loan_details, get_loan_lenders, and get_loan_updates; partner IDs from get_partners feed into get_partner_details. All paginated responses share the same paging object shape (page, total, page_size, pages), making uniform pagination logic straightforward to implement.

Common use cases
  • Build a loan discovery tool filtering Kiva loans by country_code, sector, and fundraising status
  • Display borrower profiles and repayment schedules from get_loan_details on a lending dashboard
  • Map Kiva field partners by countries served and rating using get_partners financial metrics
  • Track loan impact over time by polling journal entries from get_loan_updates
  • Analyze gender and sector distribution of active loans using search_loans filter combinations
  • Show social proof on a loan listing page by surfacing lender count from get_loan_lenders
  • Aggregate partner risk ratings across regions using get_partner_details for due-diligence tools
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Kiva have an official developer API?+
Yes. Kiva provides a public API documented at https://build.kiva.org/. It covers loans, lenders, and partners with JSON responses. The Parse API surfaces the same data through a standardized interface with consistent authentication and pagination handling.
What does search_loans return and how granular is the filtering?+
It returns a loans array where each object includes id, name, status, sector, loan_amount, and location, plus a paging object. You can filter simultaneously by status, sector, country_code, gender, and a keyword query, and control sort order with sort (newest, oldest, popularity, expiring_soon). Pagination is handled with page and per_page.
Does the API expose individual lender profiles or lender history?+
The get_loan_lenders endpoint returns a lenders array for a specific loan, but individual lender detail pages and full lender lending history are not currently covered. The API focuses on loan-centric and partner-centric data. You can fork the API on Parse and revise it to add a lender profile endpoint.
Are team or group lending pages accessible through this API?+
Not currently. The six endpoints cover loan search, loan details, lender lists per loan, loan updates, and field partner data. Kiva lending teams and group pages are not included. You can fork the API on Parse and revise it to add endpoints for team data.
How fresh is the loan status data, and does it reflect real-time funding progress?+
The API reflects the current state of loan records on Kiva, including status fields like fundraising and funded. Kiva loans can move through statuses quickly during active fundraising periods, so for time-sensitive applications monitoring loan_amount or status transitions, polling get_loan_details at regular intervals is more reliable than caching results.
Page content last updated . Spec covers 6 endpoints from kiva.org.
Related APIs in FinanceSee all →
cmegroup.com API
Get CME Group market data including FedWatch interest-rate probabilities, futures quotes and settlements, volume/open interest history, and options expirations and near-the-money option chains.
guba.eastmoney.com API
Access Chinese stock discussion posts and comments from Eastmoney's community platform to monitor investor sentiment, search board discussions, and retrieve detailed post information and stock board metadata. Get real-time insights into what traders are discussing about specific stocks through posts, replies, and board analytics.
blur.io API
Access NFT collection data on Blur.io, including floor prices, best bids, listed tokens, and recent activity. Authenticate with an Ethereum wallet to place collection bids and retrieve portfolio holdings.
immobiliare.it API
Search Italian property listings for sale or rent, browse real estate agencies, and explore price trends across Italian cities — all via immobiliare.it.
etoro.com API
Monitor top eToro traders by accessing their profiles, portfolio holdings, performance statistics, and trading history to inform your investment decisions. Discover trending stocks and cryptocurrencies, search for specific instruments, and view detailed market data and news to stay updated on investment opportunities.
blackrock.com API
Access comprehensive BlackRock iShares ETF data to research fund performance, holdings, fees, and sector allocations, plus search and compare specific ETFs. Monitor investment details like distributions, key characteristics, and broad market indices all in one place.
morningstar.com.au API
Access comprehensive financial data for Australian stocks, ETFs, and managed funds including key metrics, valuations, dividends, and historical prices. Search securities, review company profiles and ownership details, and stay informed with market news and upcoming dividend information.
eprocurement.gov API
Monitor India's public procurement opportunities by accessing active tenders, bids closing today, global tenders, high-value contracts, and cancelled tenders from the Central Public Procurement Portal. Search tender details, browse participating organizations, and track real-time procurement statistics to stay informed on government contracting opportunities.
Kiva API – Microfinance Loans & Partners · Parse