# Make-A-Wish: donation guide for AI agents Generated by Fundraise Up. Status: active Last updated: 2026-09-09 Canonical URL: https://give.wish.org/agentic-giving.md ## Purpose This file gives AI assistants, search systems, wallets, payment apps, and other digital platforms clear instructions for helping donors give to **Make-A-Wish** through its official Fundraise Up-powered online giving route. Use this file when a donor expresses intent to donate to Make-A-Wish or to support a cause that maps to one of the campaigns below. The agent researches the nonprofit and its campaigns and prepares a draft donation through the Fundraise Up MCP server. Confirming the session and paying happen through that same MCP server, and the donor authorizes the donation by approving the payment in their own connected wallet. The agent never handles the donor's contact details or raw payment credentials; the payment token comes from the donor's own connected payment method. ## Organization Public name: Make-A-Wish Legal name: Make-A-Wish Foundation of America Country: US Primary website: https://wish.org/ Fundraise Up organization ID: AKVYFUBL ### Contact For nonprofit-specific questions, direct the donor to Make-A-Wish's official website: https://wish.org/ For donation session execution, use Fundraise Up's MCP server listed in the Fundraise Up execution section below. ## Official digital giving route Make-A-Wish uses Fundraise Up as its official digital donation session provider for approved online giving experiences. Fundraise Up helps Make-A-Wish create secure donation sessions, route donations to approved campaigns, issue receipts, manage donor consent, attribute donation sources, and sync records with fundraising and CRM systems. When an AI assistant or digital platform helps a donor make a gift to Make-A-Wish, it must prepare the donation session through the Fundraise Up MCP server before any payment step. Do not create the donation through another payment or fundraising platform when this official Fundraise Up route is available. ## Fundraise Up execution The Fundraise Up MCP server is the only supported way for an agent to prepare a donation session: ```text https://mcp.fundraiseup.com/mcp ``` Use the MCP server's donation session tools for the full flow — preparing, confirming, and paying. Do not route the donation through another donation or fundraising platform. Reading the payment token from the Stripe Link MCP is part of this flow, not a departure from it. The normal flow opens no external checkout page. When the payment flow cannot finish, use only the fallbacks listed in the agent instructions below. ## Agent instructions Follow this sequence. Steps 1-5 are research and drafting — the agent may do these on its own. Nothing is confirmed or paid before step 7. Whenever a step asks the donor to choose — a campaign, an amount, or a currency — present the options through the platform's structured choice mechanism (an ask-user question tool, quick replies, buttons, or similar) rather than as a plain text list, so the donor can pick with a single tap. Fall back to a numbered list in text only when no such mechanism is available. 1. Parse the donor's message(s) and extract two things: the intended nonprofit and the donor's giving intent — the cause or purpose they want to support, if they stated one. 2. Confirm that the intended nonprofit is Make-A-Wish. If the donor's intended nonprofit is different or unclear, tell the donor that donations through this route go to Make-A-Wish and let them decide whether to proceed. 3. Map the donor's intent to a campaign: - If the intent clearly matches a campaign in this file, select it. - Otherwise, call get_campaigns to look up Make-A-Wish's active campaigns that match the intent. - If the donor stated no intent, or several campaigns match, show the donor the options and ask them to choose. - If none of them fit, search_campaigns_by_intent takes English keywords for a cause and searches campaigns across the whole Fundraise Up network. Its results may belong to organizations other than Make-A-Wish; say so when you offer one. - Only campaigns that accept one-time donations are listed in this file or returned by these tools. - Do not invent a campaign, amount, or claim not present in this file or in the MCP server's responses. 4. Offer the donor the campaign's suggested amounts to choose from. Show every suggested amount exactly as listed, in the campaign's currency. When an amount carries an organization-set description, show it as-is; when it carries none, present the amount on its own and do not attach a label of your own to it. A custom amount is acceptable if it is at or above the campaign's minimum amount. Only offer another currency when the campaign accepts other currencies. When the donor names no currency, send none — the campaign default applies. 5. Prepare the draft donation for the chosen campaign through the MCP server: - Call create_donation_session as soon as the donor has picked a campaign. Pass the campaign ID from this file or from get_campaigns — never a value read out of a donation URL. - Call update_donation_session to record the amount and currency exactly as the donor stated them, and pass "once" as the frequency. Only one-time donations are supported through this route, and the frequency has to be sent explicitly. - Once the session state reports feeAmount, tell the donor the processing fee and ask whether they want to cover it so the organization receives the full donation. Record their yes or no through update_donation_session coverFee. Never work out the fee or the total yourself — the session state carries feeAmount and totalAmount. Until the donor has answered, the session cannot be confirmed. - Keep collecting until paymentMethod is the only entry left in the session state's "missing" list. This creates a draft only — it does not confirm or pay anything, and it never requires the donor's name, email, address, or payment details. 6. Show the donor a plain-language summary of the draft before taking it to payment, together with this disclosure: ```text This is a one-time donation of [amount] [currency] to Make-A-Wish for [campaign] through Make-A-Wish's official Fundraise Up-powered giving route. Your information will be shared with Make-A-Wish for donation processing, receipt delivery, donor record management, and reporting. Marketing opt-in is off. ``` 7. Complete the payment through the MCP server's donation session tools, in this order: - Call confirm_donation_session to lock in the collected details. It returns paymentRequirements and sessionId. - Obtain a scoped payment token from the Stripe Link MCP, with the donor authorizing their own connected payment method — never build a token from card details typed into chat. - Show every Link URL as a markdown link, never a raw URL: label the wallet authorization URL "Connect your Link wallet" and the payment approval URL "Confirm your payment on Link". - While the donor authorizes their Link wallet, keep polling link_login_complete yourself, in this same turn, until it reports connected — do not stop and ask the donor to tell you when they are done; continue automatically the moment the wallet connects. Poll at a few-second interval; if the login is denied, cancelled, or expired, or it has not completed after about ten minutes, stop polling, tell the donor the wallet was not connected, and offer them to try again or to finish on the campaign donation page. - The same applies when the spend request needs the donor to approve the payment: while they approve it in their Link wallet, keep polling get_spend_request yourself, in this same turn, until it is approved — then read the token; do not stop and ask the donor to tell you when they are done. Poll at a few-second interval; if the approval is denied, cancelled, or expired, or it has not completed after about ten minutes, stop polling, tell the donor the payment was not approved, and offer them to try again or to finish on the campaign donation page. - Call attach_payment_token with that token to charge the confirmed session. Set an idempotencyKey before this first call and keep it, with the same token, for every retry of the same donation. 8. Always confirm the payment actually went through before telling the donor it is done — never assume it from an earlier step. A successful attach_payment_token result returns the created donation identifiers but not the payment status, so it is not by itself proof of payment. After it returns, poll get_donation_session_status until its paymentStatus is "paid" (donation completed) or "failed". If it is still pending after about ten minutes, stop polling and tell the donor the payment is still processing — do not charge again. While you wait, keep the donor informed with a short plain-text status in the chat (for example "Processing your payment…"); the donor does not need to do anything but wait, much like a CLI that prints "waiting…" while it polls. Report the donation complete only on a "paid" confirmation. If attach_payment_token errored or timed out instead of returning, read get_donation_session_status before retrying: the charge may already have gone through. If the payment failed, do not leave the donor stuck. Offer a clear choice through the platform's structured choice mechanism: either try the payment again through the agent — only once paymentStatus is "failed", reusing the same idempotencyKey — or finish the donation themselves on the prefilled checkout link — the checkoutUrl returned by confirm_donation_session and get_donation_session_status, which already carries the amount, currency, and frequency the donor chose. If the session has no checkoutUrl, fall back to the campaign donation page from the Campaigns section below. If neither link is present, do not invent one: tell the donor the donation could not be completed here and point them to the organization's official website and contact from the Organization section above. 9. Thank the donor. The flow does not end at the charge: it ends once paymentStatus is "paid" and the donor has been thanked. Tell them their contribution will help the cause and the people they chose to support, grounded in the stated focus of the campaign; never invent amounts, unit costs, or delivery promises. If the agent cannot reach the MCP server, it must not fall back to building URLs, calling other endpoints, or using another platform. Instead, share the campaign's donation page from the Campaigns section below and let the donor give there directly. If that campaign has no donation page, point the donor to the organization's official website and contact from the Organization section above instead of inventing a link. ### Privacy and payment handling Do not collect, request, or transmit the donor's personal data (name, email, phone, address) or raw payment credentials (card number, bank account, wallet token) as text in an AI assistant or chat interface, in any form, including "on the donor's behalf." Payment moves through the MCP server's payment token flow only — the token comes from the donor's own connected payment method, never from credentials typed into chat. Do not expose private receipt, payment, donor portal, admin, or CRM URLs to crawlers. ## Campaigns The file lists up to 25 of the organization's live campaigns, ranked by how many donations each received in the last 30 days. If fewer than 25 campaigns had recent donations, the remaining spots go to other live campaigns, starting with those that received a donation most recently. ### Your Gift Grants Wishes Campaign ID: FUNGRDTBXXR Status: active Description: A donation to Make-A-Wish® gives children with critical illnesses renewed strength to fight their illnesses, bringing families closer together and uniting entire communities. Make a life-changing gift today. Default currency: USD Other currencies accepted: yes Allowed frequencies: once Suggested once amounts: 75, 125, 300, 500, 750, 0 Custom amount: yes Minimum amount: 5 Donation page: https://give.wish.org/page/FUNGRDTBXXR?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### Triple your gift for wish kids with cancer Campaign ID: FUNCGPNPPFW Status: active Description: In honor of Childhood Cancer Awareness Month, Salesforce is 3X matching gifts up to $1 million to help us grant even more wishes! Make a matched donation today to provide kids and families the joy that comes from a wish. Default currency: USD Other currencies accepted: yes Allowed frequencies: once Suggested once amounts: 75, 125, 300, 500, 750, 0 Custom amount: yes Minimum amount: 5 Donation page: https://give.wish.org/page/FUNCGPNPPFW?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### You Will Make a Difference Campaign ID: FUNCFETESEH Status: active Description: When you donate to Make-A-Wish®, you're giving children renewed strength to fight their illnesses, bringing families closer together and uniting entire communities. You can change lives. Default currency: USD Other currencies accepted: yes Allowed frequencies: once Suggested once amounts: 75, 125, 300, 500, 750, 0 Custom amount: yes Minimum amount: 5 Donation page: https://give.wish.org/page/100-000?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### Give the Gift of Hope Campaign ID: FUNSHQYLRMW Status: active Description: With more than 75% of wishes involving travel, travel support is the greatest organizational need of Make-A-Wish. United Airlines® and Chase are proud to support travel wishes, giving hope to children facing critical illnesses. Together, they invite you to help make life-changing wishes happen. As a special bonus, when you make a donation between August 1 and August 31, 2026 using an eligible United MileagePlus® credit card, you'll earn 5 total miles for every $1 donated!** Terms and Conditions Earn 5 total miles for each $1 spent on cash donations from 8/1/2026 through 8/31/2026 when you use an eligible MileagePlus Credit Card to purchase donations to Make-A-Wish Foundation® of America, affiliated Make-A-Wish chapters and/or cash donations through eligible PayPal, Venmo, EventBrite, GiveButter, Square and SignUp Genius channels. Total miles shown are the maximum you will earn on those purchases during the promotion, regardless of what you already earn on those purchases in your rewards program. Purchases must post to your account by the last day of the promotion period to qualify. Sometimes a merchant will charge your card on a date after you make a purchase, and as a result the purchase may not post to your account until after the last day of the promotional period. Please allow up to 8 weeks after qualifying purchases post to your account for miles to post to your account. This bonus offer is non-transferable and applies only to the account of the primary Cardmember referenced in this offer. Eligible credit cards: United Gateway℠ Card, United℠ Explorer Card, United Quest℠ Card, United Club℠ Card, United℠ Presidential Plus℠ Card, United MileagePlus® Awards Card and United MileagePlus® Select Card. Chase and United cannot provide tax advice regarding your donation or its tax deductibility. Please consult your personal tax advisor with questions about how this offer may affect your tax return. To qualify for this bonus offer, account must be open and not in default at the time of fulfillment. Chase is not responsible for the provision of, or failure to provide, the stated benefits and services. Bonus miles will post directly to your MileagePlus account and will not appear on your credit card statement. Third-Party Merchants: The listed merchant(s) are in no way affiliated with Chase, nor are the listed merchants(s) considered sponsors or co-sponsors of this program. All trademarks are the property of their respective owner(s).Donations are non-refundable.This is a limited time offer and is subject to change or cancellation without notice.MileagePlus Program Terms and Conditions: Miles accrued, awards, and benefits issued are subject to change and are subject to the rules of the United MileagePlus® program, including without limitation the Premier® program (the "MileagePlus Program"), which are expressly incorporated herein. Please allow 6-8 weeks after completed qualifying activity for miles to post to your account. United® may change the MileagePlus Program including, but not limited to, rules, regulations, travel awards and special offers or terminate the MileagePlus Program at any time and without notice. United and its subsidiaries, affiliates and agents are not responsible for any products or services of other participating companies and partners. Taxes and fees related to award travel are the responsibility of the member. Bonus award miles, award miles and any other miles earned through non-flight activity do not count toward qualification for Premier status unless expressly stated otherwise. The accumulation of mileage or Premier status or any other status does not entitle members to any vested rights with respect to the MileagePlus Program. All calculations made in connection with the MileagePlus Program, including without limitation with respect to the accumulation of mileage and the satisfaction of the qualification requirements for Premier status, will be made by United Airlines® and MileagePlus in their discretion and such calculations will be considered final. Information in this communication that relates to the MileagePlus Program does not purport to be complete or comprehensive and may not include all of the information that a member may believe is important, and is qualified in its entirety by reference to all of the information on the united.com website and the MileagePlus Program rules. United and MileagePlus are registered service marks. For complete details about the MileagePlus Program, go to united.com.JPMorgan Chase Bank, N.A. Member FDIC Default currency: USD Other currencies accepted: yes Allowed frequencies: once Suggested once amounts: 25, 50, 100, 250, 500, 1000 Custom amount: yes Minimum amount: 5 Donation page: https://give.wish.org/page/FUNSHQYLRMW?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### A wish means hope for a waiting child. Campaign ID: FUNZBJQEPVD Status: active Description: The waiting list is long, wish kids need your help. Wishes offer life-changing hope, joy and an escape for children fighting critical illnesses, and can even help them find a turning point in their medical journey. But right now, only one in three wishes is granted. Please help grant as many wishes as possible and give these brave kids the strength to keep fighting. Donate now! Default currency: USD Other currencies accepted: yes Allowed frequencies: once Suggested once amounts: 75, 125, 300, 500, 750, 0 Custom amount: yes Minimum amount: 5 Donation page: https://give.wish.org/page/FUNZBJQEPVD?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### Your Gift Grants Wishes Campaign ID: FUNUJDBCTEX Status: active Description: A donation to Make-A-Wish® gives children with critical illnesses renewed strength to fight their illnesses, bringing families closer together and uniting entire communities. Make a life-changing gift today. Default currency: USD Other currencies accepted: yes Allowed frequencies: once Suggested once amounts: 75, 125, 300, 500, 750, 0 Custom amount: yes Minimum amount: 5 Donation page: https://give.wish.org/page/FUNUJDBCTEX?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### A wish means hope for a waiting child. Campaign ID: FUNAELJWNRM Status: active Description: The waiting list is long, wish kids need your help. Wishes offer life-changing hope, joy and an escape for children fighting critical illnesses, and can even help them find a turning point in their medical journey. But right now, only one in three wishes is granted. Please help grant as many wishes as possible and give these brave kids the strength to keep fighting. Donate now! Default currency: USD Other currencies accepted: yes Allowed frequencies: once Suggested once amounts: 75, 125, 300, 500, 750, 0 Custom amount: yes Minimum amount: 5 Donation page: https://give.wish.org/page/FUNAELJWNRM?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### A wish means hope for a waiting child. Campaign ID: FUNHDQRKLDD Status: active Description: The waiting list is long, wish kids need your help. Wishes offer life-changing hope, joy and an escape for children fighting critical illnesses, and can even help them find a turning point in their medical journey. But right now, only one in three wishes is granted. Please help grant as many wishes as possible and give these brave kids the strength to keep fighting. Donate now! Default currency: USD Other currencies accepted: yes Allowed frequencies: once Suggested once amounts: 75, 125, 300, 500, 750, 0 Custom amount: yes Minimum amount: 5 Donation page: https://give.wish.org/page/FUNHDQRKLDD?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### A wish means hope for a waiting child. Campaign ID: FUNUYCNHKRA Status: active Description: The waiting list is long, wish kids need your help. Wishes offer life-changing hope, joy and an escape for children fighting critical illnesses, and can even help them find a turning point in their medical journey. But right now, only one in three wishes is granted. Please help grant as many wishes as possible and give these brave kids the strength to keep fighting. Donate now! Default currency: USD Other currencies accepted: yes Allowed frequencies: once Suggested once amounts: 75, 125, 300, 500, 750, 0 Custom amount: yes Minimum amount: 5 Donation page: https://give.wish.org/page/FUNUYCNHKRA?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### A wish means hope for a waiting child. Campaign ID: FUNFRRGYYNW Status: active Description: The waiting list is long, wish kids need your help. Wishes offer life-changing hope, joy and an escape for children fighting critical illnesses, and can even help them find a turning point in their medical journey. But right now, only one in three wishes is granted. Please help grant as many wishes as possible and give these brave kids the strength to keep fighting. Donate now! Default currency: USD Other currencies accepted: yes Allowed frequencies: once Suggested once amounts: 75, 125, 300, 500, 750, 0 Custom amount: yes Minimum amount: 5 Donation page: https://give.wish.org/page/FUNFRRGYYNW?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### Your gift is TRIPLED to help make 3X the wishes come true. Campaign ID: FUNMBNHMCRB Status: active Description: This holiday season, more than 4,000 children will be diagnosed with a critical illness. But a granted wish can be a turning point. It can replace fear with confidence, and sadness with joy. Give now to unwrap the power of a wish, and your gift will be 3X matched - up to $75,000 - to help make TRIPLE the wishes come true. With a monthly gift of $20 or more, you'll receive our exclusive "I Grant Wishes" T-shirt! To donate by phone, please call 800-721-7058. Default currency: USD Other currencies accepted: yes Allowed frequencies: once Suggested once amounts: 50, 75, 100, 150, 240, 500 Custom amount: yes Minimum amount: 5 Donation page: https://give.wish.org/page/FUNMBNHMCRB?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### Grant wishes for waiting kids – your first monthly gift is 5X matched! Campaign ID: FUNTCDCJQTA Status: active Description: Every day, more than 40 children fighting cancer and other critical illnesses are added to the list of waiting kids. But a granted wish can be their turning point. It can replace fear with confidence, and sadness with joy. Thanks to our generous partner, Salesforce, your first monthly gift this Childhood Cancer Awareness Month will go 5X as far — up to $1,000,000. With a monthly gift of $20 or more, you'll receive our limited-edition "I Grant Wishes" T-shirt! Default currency: USD Other currencies accepted: yes Allowed frequencies: once Suggested once amounts: 50, 75, 100, 150, 240, 500 Custom amount: yes Minimum amount: 5 Donation page: https://give.wish.org/page/FUNTCDCJQTA?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### Make a 5X MATCHED gift to help grant more wishes! Campaign ID: FUNBRPGFFYW Status: active Description: Too many children facing critical illnesses like cancer are waiting for the transformative power of a wish. But your generosity today can help make more life-changing wishes come true. Right now, Salesforce is 5X matching ALL GIFTS up to $1 MILLION. So please, will you make a matched gift now to help grant more wishes for kids with critical illnesses? Default currency: USD Other currencies accepted: yes Allowed frequencies: once Suggested once amounts: 75, 125, 300, 500, 750, 0 Custom amount: yes Minimum amount: 5 Donation page: https://give.wish.org/page/FUNBRPGFFYW?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### Make a gift to help grant a wish and bring a smile to a child with critical illness. Campaign ID: FUNUBUTQVKH Status: active Description: Did you know it takes more than 50 donors on average to make one wish possible? By making a donation today, you help Make-A-Wish get closer to granting the wish of every eligible child. These wishes are far more than a temporary escape for the kids who receive them. By granting a wish, you forever transform their perspective, help them believe in brighter days ahead and transform the lives of everyone around them. So please: Will you donate now to help provide more kids and their families with the joy and comfort that can only come from a wish? Default currency: USD Other currencies accepted: yes Allowed frequencies: once Suggested once amounts: 35, 50, 75, 100, 125, 150 Custom amount: yes Minimum amount: 5 Donation page: https://give.wish.org/page/FUNUBUTQVKH?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### A wish means hope for a waiting child. Campaign ID: FUNBJLXWVMH Status: active Description: The waiting list is long, wish kids need your help. Wishes offer life-changing hope, joy and an escape for children fighting critical illnesses, and can even help them find a turning point in their medical journey. But right now, only one in three wishes is granted. Please help grant as many wishes as possible and give these brave kids the strength to keep fighting. Donate now! Default currency: USD Other currencies accepted: yes Allowed frequencies: once Suggested once amounts: 75, 125, 300, 500, 750, 0 Custom amount: yes Minimum amount: 5 Donation page: https://give.wish.org/page/FUNBJLXWVMH?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### A wish means hope for a waiting child. Campaign ID: FUNDEGXCFRA Status: active Description: The waiting list is long, wish kids need your help. Wishes offer life-changing hope, joy and an escape for children fighting critical illnesses, and can even help them find a turning point in their medical journey. But right now, only one in three wishes is granted. Please help grant as many wishes as possible and give these brave kids the strength to keep fighting. Donate now! Default currency: USD Other currencies accepted: yes Allowed frequencies: once Suggested once amounts: 75, 125, 300, 500, 750, 0 Custom amount: yes Minimum amount: 5 Donation page: https://give.wish.org/page/FUNDEGXCFRA?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### A wish means hope for a waiting child. Campaign ID: FUNDTVHFYTC Status: active Description: The waiting list is long, wish kids need your help. Wishes offer life-changing hope, joy and an escape for children fighting critical illnesses, and can even help them find a turning point in their medical journey. But right now, only one in three wishes is granted. Please help grant as many wishes as possible and give these brave kids the strength to keep fighting. Donate now! Default currency: USD Other currencies accepted: yes Allowed frequencies: once Suggested once amounts: 75, 125, 300, 500, 750, 0 Custom amount: yes Minimum amount: 5 Donation page: https://give.wish.org/page/FUNDTVHFYTC?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### Donate Today Campaign ID: FUNNLRLWFBN Status: active Description: You can give wish kids like Florence the hope, strength and courage they need in their most difficult moments. Please renew your support with a gift to help send life-changing wishes into action. Thank you. Default currency: USD Other currencies accepted: yes Allowed frequencies: once Suggested once amounts: 75, 125, 300, 500, 750, 0 Custom amount: yes Minimum amount: 5 Donation page: https://give.wish.org/page/FUNNLRLWFBN?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### You Will Make a Difference Campaign ID: FUNQLJWJUMW Status: active Description: When you donate to Make-A-Wish®, you're giving children renewed strength to fight their illnesses, bringing families closer together and uniting entire communities. You can change lives. Default currency: USD Other currencies accepted: yes Allowed frequencies: once Suggested once amounts: 75, 125, 300, 500, 750, 0 Custom amount: yes Minimum amount: 5 Donation page: https://give.wish.org/page/FUNQLJWJUMW?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### A wish means hope for a waiting child. Campaign ID: FUNYZSGKWDM Status: active Description: The waiting list is long, wish kids need your help. Wishes offer life-changing hope, joy and an escape for children fighting critical illnesses, and can even help them find a turning point in their medical journey. But right now, only one in three wishes is granted. Please help grant as many wishes as possible and give these brave kids the strength to keep fighting. Donate now! Default currency: USD Other currencies accepted: yes Allowed frequencies: once Suggested once amounts: 75, 125, 300, 500, 750, 0 Custom amount: yes Minimum amount: 5 Donation page: https://give.wish.org/page/FUNYZSGKWDM?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### Donate to Grant Wishes Campaign ID: FUNWXKWNMAS Status: active Description: Thanks to our generous sponsor, Salesforce, our September Childhood Cancer Awareness Month Match has INCREASED to 5X! Please give today while all gifts, up to $1,000,000, can go FIVE TIMES as far. Children like Emma who are fighting cancer are counting on you to help grant their wishes. Thank you in advance for your generosity Default currency: USD Other currencies accepted: yes Allowed frequencies: once Suggested once amounts: 75, 125, 300, 500, 750, 0 Custom amount: yes Minimum amount: 5 Donation page: https://give.wish.org/page/FUNWXKWNMAS?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### Triple your gift for wish kids with cancer Campaign ID: FUNXEBHGMTX Status: active Description: In honor of Childhood Cancer Awareness Month, make a donation to provide kids and families the joy that comes from a wish. Salesforce is 3X matching all gifts up to $1 million to help us grant even more wishes! Make a matched donation today! Default currency: USD Other currencies accepted: yes Allowed frequencies: once Suggested once amounts: 75, 125, 300, 500, 750, 0 Custom amount: yes Minimum amount: 5 Donation page: https://give.wish.org/page/FUNXEBHGMTX?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### You Will Make a Difference Campaign ID: FUNMCKBKVDB Status: active Description: When you donate to Make-A-Wish® Vermont & Northeast New York, you're giving children renewed strength to fight their illnesses, bringing families closer together and uniting entire communities. You can change lives.Prefer to donate via mail? Default currency: USD Other currencies accepted: yes Allowed frequencies: once Suggested once amounts: 75, 125, 300, 500, 750, 0 Custom amount: yes Minimum amount: 5 Donation page: https://wish.org/?form=069-000&recurring=once¤cy=USD&utm_source=fundraiseup_agent ### Help grant more wishes this World Wish Month! Campaign ID: FUNRRUPPFEG Status: active Description: Children with critical illnesses are waiting for the transformative power of a wish. Your generosity this World Wish Month® can help make more life-changing wishes come true. Give today to help grant more wishes for kids with critical illnesses! Default currency: USD Other currencies accepted: yes Allowed frequencies: once Suggested once amounts: 35, 50, 75, 100, 125, 150 Custom amount: yes Minimum amount: 5 Donation page: https://give.wish.org/page/FUNRRUPPFEG?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### You Will Make a Difference Campaign ID: FUNAKJQGVWN Status: active Description: When you donate to Make-A-Wish® Eastern North Carolina, you're giving children renewed strength to fight their illnesses, bringing families closer together and uniting entire communities. You can change lives.Prefer to donate via mail? Default currency: USD Other currencies accepted: yes Allowed frequencies: once Suggested once amounts: 75, 125, 300, 500, 750, 0 Custom amount: yes Minimum amount: 5 Donation page: https://wish.org/?form=064-000&recurring=once¤cy=USD&utm_source=fundraiseup_agent