Benevity

Benevity is a Calgary-based corporate purpose software platform for workplace giving, matching, grantmaking, and employee/customer volunteering. Its Giving API lets partners embed nonprofit-of-choice donations, optional matching, and charitable gift cards into e-commerce, banking, and rewards experiences; the Cause Search API exposes Benevity's vetted global nonprofit database; the Spark API lets existing Spark Employee Engagement clients surface giving and volunteering opportunities in other interfaces; and the Location Services API lets clients manage locations (stores, franchises, offices) inside the Benevity ecosystem. The API follows the RESTful/OpenAPI standard and is documented publicly at developer.benevity.org, but credentials are partner-gated - access requires requesting a demo/business relationship with Benevity rather than self-serve signup.

6 APIs 0 Features
Corporate Social ResponsibilityWorkplace GivingDonationsVolunteeringNonprofitsMatching GiftsCSRESG

APIs

Benevity Causes API

Search the Benevity Cause Database - a global directory of vetted, registered nonprofits - by keyword, location, NTEE category, country/state, and geographic proximity, with pag...

Benevity Giving API

Route nonprofit-of-choice donations into digital experiences - e-commerce, online banking, rewards programs, and charitable gift cards. Postpaid company donations settle monthly...

Benevity Receipts API

Retrieve the PDF receipt for a completed donation by its backend receipt ID, or request that the receipt be emailed to the donor. Receipts show issue date, donor name/address, a...

Benevity Spark Giving Opportunities API

For existing Spark Employee Engagement clients - search a company's active giving opportunities (initiatives that route donations to one or more causes) by keyword and geographi...

Benevity Spark Volunteer Opportunities API

For existing Spark Employee Engagement clients - search a company's volunteer opportunities/events by keyword, date range, open shift spots, interests, skills, and whether the o...

Benevity Location Services API

Create and manage locations (stores, franchises, offices) inside the Benevity ecosystem - address data, contact information, and tags - so multi-location organizations can attri...

Collections

Pricing Plans

Benevity Plans Pricing

1 plans

PLANS

Rate Limits

Benevity Rate Limits

4 limits

RATE LIMITS

FinOps

Resources

🔗
TrustCenter
TrustCenter
🔗
VulnerabilityDisclosure
VulnerabilityDisclosure
🔗
DomainSecurity
DomainSecurity
🔑
Authentication
Authentication
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Benevity API
  version: '1.0'
request:
  auth:
    type: bearer
    token: '{{accessToken}}'
items:
- info:
    name: Authorization
    type: folder
  items:
  - info:
      name: Get an OAuth2 access token.
      type: http
    http:
      method: POST
      url: https://skyline.benevity.org/oauth2/token
      auth:
        type: basic
        username: '{{clientId}}'
        password: '{{clientSecret}}'
    docs: OAuth 2.0 client credentials grant. Returns a JWT access_token valid for expires_in seconds (typically 3600); reuse
      until near expiry.
- info:
    name: Causes
    type: folder
  items:
  - info:
      name: Search causes.
      type: http
    http:
      method: GET
      url: https://skyline.benevity.org/search/causes
      params:
      - name: q
        value: ''
        type: query
        description: Search term.
      - name: country
        value: ''
        type: query
        description: ISO 3166 country code.
      - name: page_size
        value: '25'
        type: query
        description: Results per page.
    docs: Searches the Benevity Cause Database by keyword, location, category, and country/state, with eligibility filtering.
- info:
    name: Giving
    type: folder
  items:
  - info:
      name: Create a postpaid company donation.
      type: http
    http:
      method: POST
      url: https://skyline.benevity.org/donations
      body:
        type: json
        data: "{\n  \"destination\": { \"recipientId\": \"\" },\n  \"funds\": { \"paymentType\": \"\", \"currencyCode\": \"\
          USD\", \"amount\": 1000 },\n  \"donor\": { \"fullName\": \"\", \"email\": \"\" }\n}"
    docs: Submits a donation settled monthly against a donation report invoiced to the client company.
  - info:
      name: Create a prepaid credit card donation.
      type: http
    http:
      method: POST
      url: https://skyline.benevity.org/payments/card/transactions
      body:
        type: json
        data: "{\n  \"companyCode\": \"\",\n  \"total\": 1000,\n  \"currencyCode\": \"USD\",\n  \"paymentConfig\": { \"token\"\
          : \"\", \"merchantAccountId\": \"\", \"processor\": \"BLUESNAP\" },\n  \"referenceNumber\": \"\",\n  \"adapter\"\
          : \"Adapter.General\",\n  \"purchaseItems\": [ { \"itemTotalAmountCents\": 1000, \"allocations\": [ { \"causeCode\"\
          : \"\", \"amountCents\": 1000 } ] } ]\n}"
    docs: Captures a donation immediately via a tokenized card payment (BlueSnap-backed), optionally split across multiple
      cause allocations.
- info:
    name: Receipts
    type: folder
  items:
  - info:
      name: Download a donation receipt PDF.
      type: http
    http:
      method: GET
      url: https://skyline.benevity.org/receipts/:backendReceiptId
      params:
      - name: backendReceiptId
        value: ''
        type: path
        description: Receipt ID returned from the donation-creation response.
    docs: Returns the receipt as a binary PDF.
  - info:
      name: Email a donation receipt.
      type: http
    http:
      method: POST
      url: https://skyline.benevity.org/receipts/:backendReceiptId/email
      params:
      - name: backendReceiptId
        value: ''
        type: path
        description: Receipt ID returned from the donation-creation response.
      body:
        type: json
        data: "{\n  \"email\": \"\"\n}"
    docs: Queues the receipt PDF to be emailed to the donor. Returns 202 Accepted.
- info:
    name: Spark
    type: folder
  items:
  - info:
      name: Search giving opportunities.
      type: http
    http:
      method: GET
      url: https://api.benevity.org/search/givingopportunities
      params:
      - name: q
        value: ''
        type: query
        description: Search term.
    docs: For existing Spark Employee Engagement clients - search active giving opportunities.
  - info:
      name: Search volunteer opportunities.
      type: http
    http:
      method: GET
      url: https://api.benevity.org/search/volunteeropportunities
      params:
      - name: q
        value: ''
        type: query
        description: Search term.
      - name: filter[temporal_type]
        value: ''
        type: query
        description: ongoing or time_bounded.
    docs: For existing Spark Employee Engagement clients - search volunteer opportunities/events.