You're on track to get doubled donations (and unlock a reward for the colleague who referred you). Keep up the great work!
Take credit for your charitable giving! Check out your tax receipts
To use your $50 gift card credits, find a project to fund and we'll automatically apply your credits at checkout. Find a classroom project
Skip to main content

Help teachers & students in your hometown this season!
Use code HOME at checkout and your donation will be matched up to $100.

Your school email address was successfully verified.

Donor Pages

Overview

The content returned by our donor API closely matches that on our donor page. Viewing a donor profile page can help you understand the context of the information you'll be parsing. One way our API differs from the front-end is you have more control over exactly what information you retrieve. We recommend that you request the minimum amount of information that will meet your needs in order to ensure a quick response from our servers.

Requests

To retrieve information about a donor, send a request to https://api.donorschoose.org/common/json-donor.html. There are three general parameters you can pass with your request. Other, more specific parameters will be presented along with the relevant data.

APIKey (required) Your unique API Key
donorid (required) The ID number of donor you want information about.
callback (optional) If you wish to wrap your response in a callback function, include the name here. You should make your callback static, as it will improve caching and in turn performance. (Many AJAX frameworks will make the callback a random string unless otherwise specified so you'll be overriding that default behavior.) Also be sure to enable any caching options (eg. set the cache param to True in jQuery) or else some frameworks will append a timestamp to each JSON request to prevent caching.

 

JSON Details
Note that in all cases, values in the JSON are XML-escaped strings. The descriptions below each example tell you the kind of data being returned so you know how to parse it.

General Info

Parameters

showbasicinfo Whether we should display basic donor info. Set this to false if you're retrieving paginated info, e.g. lists of proposals, and don't need to reload basic donor info. Default is true.

Example

{
"donorId": "47474",
"donorProfileURL": "https://www.donorschoose.org/donor/47474?utm_source=api&utm_medium=feed&utm_content=donorprofile&utm_campaign=DONORSCHOOSE",
"donorPhotoURL": "https://graph.facebook.com/628567835/picture?type=large",
"numProposalsSupported": "270",
"numDonorsAcquired": "62",
...
}

Descriptions

Field Type Description Always Provided?
donorId long The donor's ID number Yes
donorProfileURL string The URL of the donor's profile on the front end. Yes
donorPhotoURL string The URL of the donor's profile photo. No
numProposalsSupported integer The number of projects a donor has given to. Yes
numDonorsAcquired integer The number of new donors this donor has referred to DonorsChoose. Yes

Stickers

Stickers are recogntions of a donor's contributions to DonorsChoose. They're described in our FAQ.

Example

"stickers": [
{
"name": "Supporter",
"description": "Number of projects supported, minimum of 2.",
"imageURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/stickers/projects_wide.png",
"value": "270"
},
{
"name": "School Angel",
"description": "Number of schools at which the donor has supported 3 or more teachers.",
"imageURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/stickers/schools_wide.png",
"value": "1"
},
{
"name": "Mobilizer",
"description": "Number of new donors recruited.",
"imageURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/stickers/donors_wide.png",
"value": "62"
},
{
"name": "Monthly Giver",
"description": "Donor is signed up for automatic monthly donations",
"imageURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/stickers/recurring_wide.png"
}
]

Descriptions

Field Type Description Always Provided?
name string The name of the sticker. Yes
description string What the sticker is awarded for. Yes
imageURL string Path to the sticker icon. Yes
value integer The donor's score on the metric relevant to the sticker (not applicable to Monthly Giver). No

Projects

A list of projects the donor has given to. Proposals are only returned if the proposalsmax parameter is specified. Proposals that are still active are sorted to the front of the list. The format of proposal data is nearly identical to projects returned from our search API. The only difference is medium-sized thank-you photos are returned along with the small photos. The photo layout is shown below.

Parameters

proposalsmax The number of proposals to load. Default none, limit of 500.
proposalsindex index into the result set of proposals (for pagination)
photosonly Set to true to only load proposals that have associated "thank you" photos. This can be useful if your design depends heavily on that visual element.

Example
...
"photos": [
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/750000/750655/p750655_005_sm.jpg",
"mediumPhotoURL":
"http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/750000/750655/p750655_005_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/750000/750655/p750655_006_sm.jpg",
"mediumPhotoURL":
"http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/750000/750655/p750655_006_md.jpg"
},
{
"smallPhotoURL":
"http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/750000/750655/p750655_007_sm.jpg",
"mediumPhotoURL":
"http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/750000/750655/p750655_007_md.jpg"
},
{
"smallPhotoURL":
"http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/750000/750655/p750655_008_sm.jpg",
"mediumPhotoURL":
"http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/750000/750655/p750655_008_md.jpg"
},
{
"smallPhotoURL":
"http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/750000/750655/p750655_009_sm.jpg",
"mediumPhotoURL":
"http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/750000/750655/p750655_009_md.jpg"
},
{
"smallPhotoURL":
"http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/750000/750655/p750655_010_sm.jpg",
"mediumPhotoURL":
"http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/750000/750655/p750655_010_md.jpg"
}
],
...

Descriptions

Field Type Description Always provided?
photossmallPhotoURL
mediumPhotoURL
string
string
Array of objects containing small and medium photo URLsSmall photo URL
Medium-sized photo URL
No

Favorites

A list of proposals the donor has selected as favorites by clicking the star next to their names. Favorites are only returned if the favoritesmax parameter is specified. The layout of favorites is identical to that of proposals.

Parameters

favoritesmax The number of favorites (starred proposals) to load. Default is none, limit is 100.
favoritesindex index into favorites.

Giving Pages

A list of Giving Pages the donor has created.

Parameters

showgivingpages Pass as true to retrieve giving pages and member giving pages. Default is false.

Example

"givingPages": [
{
"name": "Oliver “El Sabor Urbano” Hurst-Hiller",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html
id=208318&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c208318_sm.jpg
1322584846043?,
"amountDonated": "7546.14",
"numProposalsSupported": "30",
"mostRecentDonationDate": "2012-02-27 16:53:28.415"
},
...
]

Description

Field Type Description Always Provided?
name string The name of the giving page. Yes
URL string The URL of the giving page on the front end. Yes
photoURL string The URL of the giving page photo. No
amountDonated double The total amout donated through is giving page. Yes
numProposalsSupported integer The total number of projects supported through this giving page. Yes
mostRecentDonationDate date The time and date of the most recent donation through this giving page. No

Member Giving Pages

A list of Giving Pages the donor has given through. The layout is similar to above, but without the financial details.

Parameters

showgivingpages Pass as true to retrieve giving pages and member giving pages. Default is false.

Example

"memberGivingPages": [
{
"name": "Dan “‘Stache Money Millionaires” Blum",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=204849&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c204849_sm.jpg?1320805566485"
},
...
]

Descriptions

Field Type Description Always Provided?
name string The name of the giving page. Yes
URL string The URL of the giving page on the front end. Yes
photoURL string The URL of the giving page photo. No

Project Messages

A list of messages that teachers, donors, or DonorsChoose staff have posted about proposals the donor has given to. These are only returned if messagesmax is specified.

Parameters

messagesmax The max number of proposal messages to display. (default none, limit 500)
messagesindex Index into messages.
messagesverbose Set to true to return the text of teacher messages (still truncated at 175 chars). By default this is false, which means we provide a link to project page were the message was posted.

Example #1 (teacher message)

"proposalMessages": [
{
"category": "PHOTOS_AND_IMPACT",
"createdOn": "2012-05-11 00:28:39.454",
"author": {
"id": "114180",
"URL": "https://www.donorschoose.org/we-teach/114180?utm_source=api&utm_medium=feed&utm_content=teacherprofile&utm_campaign=DONORSCHOOSE",
"type": "teacher",
"name": "Mr. Istel"
},
"proposal": {
"id": "682830",
"URL": "https://www.donorschoose.org/project/a-macbook-laptop-for-every-lap/682830/?utm_source=api&utm_medium=feed&utm_content=proposal&utm_campaign=DONORSCHOOSE",
"name": "A Macbook Laptop for Every Lap!"
},
"message": "<a href="https://www.donorschoose.org/project/a-macbook-laptop-for-every-lap/682830/#photos"><img alt="Photos" src="http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/project/posted_photos.gif"></a><span>Photos and Impact Letter posted for:</span> <a href="https://www.donorschoose.org/project/a-macbook-laptop-for-every-lap/682830/#photos">A Macbook Laptop for Every Lap!</a>"
},
...
]

Descriptions

These fields apply to all proposal messages:

Field Type Description Always Provided?
category string The type of message being posted. This will be one of DONATION, ITY, PHOTOS, IMPACT, or PHOTOS_AND_IMPACT.

  • DONATION is the message the donor writes when they donate.
  • ITY (Interim Thank You) is a thank-you message a teacher posts before the project is completed.
  • PHOTOS Are the photos the classroom posts of them using their new supplies.
  • IMPACT Is a letter the classroom wrote about the impact of the donations.
  • PHOTOS_AND_IMPACT Is a combination of the two above categories.
Yes
createdOn date The date the message was posted. Yes
author
id
URL
type
name
city
state
stateName
long
string
string
string
string
string
string
An object with information about the person who posted this message.the author's id number.
A link to the author's profile on the front end.
The type of author (can be donor, teacher, or staff)
The name of the author.
The author's city of residence.
The author's state of residence (postal abbreviation).
The full name of the author's state of residence.
Yes
project
id
URL
name
long
string
string
An object containing information about the project this message was posted for.The project id.
The URL of the project page.
The name of the project.
Yes
message string The text of the posted message (In some cases, this will be HTML links to the project page where the message was posted, and the teacher's profile page). Yes

Example #2 (donor message)

{
"category": "ITY",
"createdOn": "2012-04-30 14:27:13.68",
"author": {
"id": "139499",
"URL": "https://www.donorschoose.org/we-teach/139499?utm_source=api&utm_medium=feed&utm_content=teacherprofile&utm_campaign=DONORSCHOOSE",
"type": "teacher",
"name": "Mrs. Gundlach"
},
"proposal": {
"id": "749561",
"URL": "https://www.donorschoose.org/project/everyone-is-a-scientist/749561/?utm_source=api&utm_medium=feed&utm_content=proposal&utm_campaign=DONORSCHOOSE",
"name": "Everyone Is a Scientist"
},
"message": "<a href="https://www.donorschoose.org/project/everyone-is-a-scientist/749561/#letter"><img alt="Teacher Mail" src="http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/project/posted_mail.gif"></a><span>Teacher Mail posted for:</span> <a href="https://www.donorschoose.org/project/everyone-is-a-scientist/749561/#letter">Everyone Is a Scientist</a>"
},

Descriptions

These fields only apply to donation messages.

Field Type Description Always Provided?
honoree
name
city
state
string
string
string
An object containing information about the honoree of the donation (if applicable).The honoree's name.
The honoree's city of residence.
The honoree's state of residence (postal abbreviation).
No
givingPage
id
URL
photoURL
name
long
string
string
string
An object containing information about the giving page this donation was placed through (if applicable).Giving page id.
URL of the giving page.
The URL of the photo posted on the giving page.
The name of the giving page.
No
giftCardSource
imageURL
URL
donorId
string
string
long
An object containing information about the gift card used in this donation (if applicable).The gift card image.
A link to the profile of the donor who bought the gift card, or general gift card info
The id of the donor who bought the gift card, if available.
No

Full JSON Example

{
"donorId": "47474",
"donorProfileURL": "https://www.donorschoose.org/donor/47474?utm_source=api&utm_medium=feed&utm_content=donorprofile&utm_campaign=DONORSCHOOSE",
"donorPhotoURL": "https://graph.facebook.com/628567835/picture?type=large",
"numProposalsSupported": "270",
"numDonorsAcquired": "62",
"stickers": [
{
"name": "Supporter",
"description": "Number of projects supported, minimum of 2.",
"imageURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/stickers/projects_wide.png",
"value": "270"
},
{
"name": "School Angel",
"description": "Number of schools at which the donor has supported 3 or more teachers.",
"imageURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/stickers/schools_wide.png",
"value": "1"
},
{
"name": "Mobilizer",
"description": "Number of new donors recruited.",
"imageURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/stickers/donors_wide.png",
"value": "62"
},
{
"name": "Monthly Giver",
"description": "Donor is signed up for automatic monthly donations",
"imageURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/stickers/recurring_wide.png"
}
],
"proposals": [
{
"id": "749561",
"proposalURL": "https://www.donorschoose.org/project/everyone-is-a-scientist/749561/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=749561&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
"imageURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/user/uploads/small/u139499_sm.jpg?timestamp=1319154112921",
"title": "Everyone Is a Scientist",
"shortDescription": "Getting students to think scientifically and to comprehend what they read is one of the best things a teacher can do! Combining reading and science is one of my preferred ways to get the job done....",
"fulfillmentTrailer": "My students need four copies of this fabulous science book “Science-A Closer Look”.",
"percentFunded": "100",
"costToComplete": "0.00",
"matchingFund": {
"matchingKey": "",
"name": "",
"logoURL": "",
"faqURL": "",
"amount": "0.00"
},
"totalPrice": "558.19",
"freeShipping": "true",
"teacherName": "Mrs. Gundlach",
"gradeLevel": {
"id": "3",
"name": "Grades 6-8"
},
"povertyLevel": "High Poverty",
"schoolName": "Martin Sortun Elem School",
"city": "Kent",
"zip": "98030-5002",
"state": "WA",
"latitude": "47.379540000000000",
"longitude": "-122.171509000000000",
"zone": {
"id": "404",
"name": "Washington"
},
"subject": {
"id": "7",
"name": "Environmental Science",
"groupId": "4"
},
"resource": {
"id": "1",
"name": "Books"
},
"expirationDate": "2012-07-07",
"fundingStatus": "funded",
"thankYouAssets": {
"interimThankYou": "Thanks to all of your wonderful support, my classroom is going to receive four more copies of Science-A Closer Look, which is a wonderful resource to learn more about science and reading in our 6th grade classroom .I have been sharing our available copies with my other sixth grade teachers this year, and I look forward to having my own set so that I can use these books on a more regular basis.Thanks again! I am always amazed at the wonderful generosity out there. Donor’s choose and all of you have made my classroom a much richer, interesting place to learn.With gratitude,Mrs. Gundlach",
"photos": [],
"resultsLetter": ""
}
},
{
"id": "710784",
"proposalURL": "https://www.donorschoose.org/project/encouraging-environmental-awareness-wit/710784/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=710784&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
"imageURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/user/uploads/small/u107631_sm.jpg?timestamp=1326407037684",
"title": "Encouraging Environmental Awareness with Great Literature",
"shortDescription": "Literature can inspire action! Both Julie of the Wolves and Scat will introduce students to contemporary environmental issues through great literature. Our sixth-grade classes are part of a new...",
"fulfillmentTrailer": "My 30 students need class sets of the environmentally themed books “Scat” and “Julie of the Wolves” to support our environmental studies program.",
"percentFunded": "100",
"costToComplete": "0.00",
"matchingFund": {
"matchingKey": "",
"name": "",
"logoURL": "",
"faqURL": "",
"amount": "0.00"
},
"totalPrice": "1022.96",
"freeShipping": "true",
"teacherName": "Mrs. Mitsuse",
"gradeLevel": {
"id": "3",
"name": "Grades 6-8"
},
"povertyLevel": "High Poverty",
"schoolName": "Thomas Starr King Middle Sch",
"city": "Los Angeles",
"zip": "90029-2223",
"state": "CA",
"latitude": "34.096989000000000",
"longitude": "-118.280853000000000",
"zone": {
"id": "411",
"name": "California (South)"
},
"subject": {
"id": "3",
"name": "Literature & Writing",
"groupId": "6"
},
"resource": {
"id": "1",
"name": "Books"
},
"expirationDate": "2012-06-12",
"fundingStatus": "funded",
"thankYouAssets": {
"interimThankYou": "Thank you all so very much for your generous support of our project. I feel gratitude not only for your donations but for the thoughtful comments that came with them. I am very excited that the students who I have currently will be able to use and enjoy the books. Both Scat and Julie of the Wolves will add greatly to our small collection of books with environmental themes, and my students will now have a choice of books to read for Literature Circles. I am looking forward to opening the box of new books with them. With gratitude,Mrs. Mitsuse",
"photos": [],
"resultsLetter": ""
}
},
{
"id": "790577",
"proposalURL": "https://www.donorschoose.org/project/teaching-literacy-through-art/790577/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=790577&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
"imageURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/user/uploads/small/u673006_sm.jpg?timestamp=1290526927984",
"title": "Teaching Literacy Through Art",
"shortDescription": "The foundation to reading and writing is learning the alphabet. Help me to give my students hands-on art lessons that connect to letter recognition and letter sounds. My students are preschoolers...",
"fulfillmentTrailer": "My students need pipe cleaners, paper, collage materials, stamps, dough, dough stamps, and an easel to enhance our standards on letter recognition and sounds.",
"percentFunded": "100",
"costToComplete": "0.00",
"matchingFund": {
"matchingKey": "",
"name": "",
"logoURL": "",
"faqURL": "",
"amount": "0.00"
},
"totalPrice": "641.16",
"freeShipping": "true",
"teacherName": "Mrs. Folan",
"gradeLevel": {
"id": "1",
"name": "Grades PreK-2"
},
"povertyLevel": "Moderate Poverty",
"schoolName": "Great Bridge Primary School",
"city": "Chesapeake",
"zip": "23322-5516",
"state": "VA",
"latitude": "36.715027000000000",
"longitude": "-76.253426000000000",
"zone": {
"id": "304",
"name": "Virginia"
},
"subject": {
"id": "10",
"name": "Literacy",
"groupId": "6"
},
"resource": {
"id": "3",
"name": "Supplies"
},
"expirationDate": "2012-09-19",
"fundingStatus": "funded",
"thankYouAssets": {
"interimThankYou": "I cannot express how grateful I am for your donations. I thank you for honoring the three little angels that were lost and supporting the education of young children through art.My students will be overjoyed to use the art and dough supplies to enhance our literacy activities. We are at the point in the year when review all of our letters and the alphabet collage items will be perfect for this!Once again thank you for your donations. It is ice to know so many people support public education!With gratitude,Mrs. Folan",
"photos": [],
"resultsLetter": ""
}
},
{
"id": "737744",
"proposalURL": "https://www.donorschoose.org/project/technology-for-future-engineers/737744/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=737744&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
"imageURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/user/uploads/small/u1247169_sm.jpg?timestamp=1327717602934",
"title": "Technology for Future Engineers",
"shortDescription": "The world is changing everyday and I want to provide my students the opportunity to change with it. We have a brand new super highway in our school (high speed ,wireless internet) but not enough...",
"fulfillmentTrailer": "My students need two Mini Netbooks to access the internet for research projects and to assist in engineering activities.",
"percentFunded": "100",
"costToComplete": "0.00",
"matchingFund": {
"matchingKey": "",
"name": "",
"logoURL": "",
"faqURL": "",
"amount": "0.00"
},
"totalPrice": "713.02",
"freeShipping": "false",
"teacherName": "Mr. Powell",
"gradeLevel": {
"id": "2",
"name": "Grades 3-5"
},
"povertyLevel": "High Poverty",
"schoolName": "Harbor City Elementary School",
"city": "Harbor City",
"zip": "90710-2798",
"state": "CA",
"latitude": "33.793159000000000",
"longitude": "-118.303535000000000",
"zone": {
"id": "411",
"name": "California (South)"
},
"subject": {
"id": "6",
"name": "Applied Sciences",
"groupId": "4"
},
"resource": {
"id": "2",
"name": "Technology"
},
"expirationDate": "2012-06-30",
"fundingStatus": "funded",
"thankYouAssets": {
"interimThankYou": "I would like to thank all of you for donating to our project. My class and I are thrilled that you have decided to help public school students. Your donations mean a great deal to all of us and we appreciate it deeply. We will be able to further our research and complete engineering activities with the two HP Miniature Notebooks that your donations will provide. Our school has recently been upgraded with high speed Internet, however our computers are very old. These new notebooks will allow all of us to quickly access the Internet. I would like to reiterate again that my class and I are very grateful for your generosity. With gratitude,Mr. Powell",
"photos": [],
"resultsLetter": ""
}
},
{
"id": "750655",
"proposalURL": "https://www.donorschoose.org/project/supplies-supplies-and-more-supplies/750655/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=750655&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
"imageURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/user/uploads/small/u1017112_sm.jpg?timestamp=1331388648750",
"title": "Supplies, Supplies and More Supplies!",
"shortDescription": "Have you ever gone to staple something and realized you were out of staples?! This school year has been flying by so quickly and so are our supplies. We have been busy at work and need supplies to...",
"fulfillmentTrailer": "My students need basic supplies, such as word walls, stamps and pencils, to create a fun, Kindergarten ? Friendly working environment!",
"percentFunded": "100",
"costToComplete": "0.00",
"matchingFund": {
"matchingKey": "",
"name": "",
"logoURL": "",
"faqURL": "",
"amount": "0.00"
},
"totalPrice": "406.61",
"freeShipping": "false",
"teacherName": "Ms. Granberg",
"gradeLevel": {
"id": "1",
"name": "Grades PreK-2"
},
"povertyLevel": "High Poverty",
"schoolName": "",
"city": "",
"zip": "",
"state": "NY",
"latitude": "",
"longitude": "",
"zone": {
"id": "103",
"name": "New York (City)"
},
"subject": {
"id": "8",
"name": "Mathematics",
"groupId": "4"
},
"resource": {
"id": "3",
"name": "Supplies"
},
"expirationDate": "2012-07-18",
"fundingStatus": "funded",
"thankYouAssets": {
"interimThankYou": "Words can not express how grateful my students and myself are for your wonderful and generous donations. With this project, we are able to stock our shelves and get that necessities that all classrooms need. We are loving our first year in Kindergarten and we want to make the last couple of months the best. With your generous help we are now able to do that. This project has been a wonderful lesson to my class as well. They are able to see how wonderful and generous people like each one of you are. Thank you again for making our dreams come true. With gratitude,Ms. Granberg",
"photos": [
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/750000/750655/p750655_005_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/750000/750655/p750655_005_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/750000/750655/p750655_006_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/750000/750655/p750655_006_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/750000/750655/p750655_007_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/750000/750655/p750655_007_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/750000/750655/p750655_008_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/750000/750655/p750655_008_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/750000/750655/p750655_009_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/750000/750655/p750655_009_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/750000/750655/p750655_010_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/750000/750655/p750655_010_md.jpg"
}
],
"resultsLetter": "Words can not express how grateful my class and myself are for your generosity! With your help, we now have the basic supplies necessary to carry on our daily activities. By providing my students with our supplies, we are able to laminate our projects to keep reusing them over and over again. We can also decorate our classroom with our bulletin board boarders too! Our new stamp sets will help us in many ways on our learning journey! Your generosity has shown my classroom how wonderful it is to help others in need. That is an invaluable lesson that they learned through this project. Thank you again! With gratitude,Ms. Granberg"
}
},
{
"id": "682830",
"proposalURL": "https://www.donorschoose.org/project/a-macbook-laptop-for-every-lap/682830/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=682830&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
"imageURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/user/uploads/small/u114180_sm.jpg",
"title": "A Macbook Laptop for Every Lap!",
"shortDescription": "Most of my students are madly clicking away on laptops, updating their reading blogs and revising their essays. However, four students sit stewing because we don’t have enough Macbooks for the...",
"fulfillmentTrailer": "My students need 4 more Apple MacBook Air laptops to ensure students can research, draft, and publish their essays, poetry, memoirs, and stories.",
"percentFunded": "100",
"costToComplete": "0.00",
"matchingFund": {
"matchingKey": "",
"name": "",
"logoURL": "",
"faqURL": "",
"amount": "0.00"
},
"totalPrice": "4831.72",
"freeShipping": "false",
"teacherName": "Mr. Istel",
"gradeLevel": {
"id": "4",
"name": "Grades 9-12"
},
"povertyLevel": "High Poverty",
"schoolName": "",
"city": "",
"zip": "",
"state": "NY",
"latitude": "",
"longitude": "",
"zone": {
"id": "103",
"name": "New York (City)"
},
"subject": {
"id": "10",
"name": "Literacy",
"groupId": "6"
},
"resource": {
"id": "2",
"name": "Technology"
},
"expirationDate": "2012-04-25",
"fundingStatus": "funded",
"thankYouAssets": {
"interimThankYou": "From coast to coast, north to south, so many generous spirited folks! Thanks for donating to my 9th grade classroom on the Lower East Side. We will now have resources to ensure our students’ literacy advancement so they’ll be able to become 21st century American citizens who will make you proud! Our students have increasingly become digitally literate. They post public responses concerning the books they’re reading; they write and share documents; they’ll be creating websites and blogs. Their awesome talents will flower, thanks to you.With gratitude,Mr. Istel",
"photos": [
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/682000/682830/p682830_012_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/682000/682830/p682830_012_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/682000/682830/p682830_013_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/682000/682830/p682830_013_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/682000/682830/p682830_014_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/682000/682830/p682830_014_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/682000/682830/p682830_015_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/682000/682830/p682830_015_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/682000/682830/p682830_016_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/682000/682830/p682830_016_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/682000/682830/p682830_017_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/682000/682830/p682830_017_md.jpg"
}
],
"resultsLetter": " I can’t begin to express in this short note how your generosity this past winter has allowed the kids in my classroom to have a glorious spring. The Mac Airbooks that your gifts helped purchase have become the most popular computers in the school. Whenever we’re not using them other teachers are borrowing them for their students, so the impact of your donation has been campus-wide. Although the computers are fast and lightweight, my 9th graders put them to serious purpose. They’ve used them to create and post videos of their reading recommendations; to write and design Memoir Projects in connection with our unit on “The Glass Castle”; and currently they’re researching and writing articles about contemporary teen issues that they’ve seen mirrored in “Romeo and Juliet.” Please know that your gift has raised the morale and the professionalism in my English class room and for that I feel extremely blessed."
}
},
{
"id": "615478",
"proposalURL": "https://www.donorschoose.org/project/lets-bring-art-back-into-the-classroom/615478/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=615478&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
"imageURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/user/uploads/small/u282702_sm.jpg",
"title": "Let’s Bring Art Back into the Classroom!",
"shortDescription": "Do you remember when you were a child? I do....my favorite part of school was art. It seems that far too often art is taking a back seat in education. Many forget that education can be taught...",
"fulfillmentTrailer": "My students need art supplies such as watercolors, brushes, paper, and markers.",
"percentFunded": "100",
"costToComplete": "0.00",
"matchingFund": {
"matchingKey": "",
"name": "",
"logoURL": "",
"faqURL": "",
"amount": "0.00"
},
"totalPrice": "544.25",
"freeShipping": "false",
"teacherName": "Ms. Ferrone",
"gradeLevel": {
"id": "2",
"name": "Grades 3-5"
},
"povertyLevel": "High Poverty",
"schoolName": "",
"city": "",
"zip": "",
"state": "NY",
"latitude": "",
"longitude": "",
"zone": {
"id": "103",
"name": "New York (City)"
},
"subject": {
"id": "11",
"name": "Visual Arts",
"groupId": "1"
},
"resource": {
"id": "3",
"name": "Supplies"
},
"expirationDate": "2012-01-17",
"fundingStatus": "funded",
"thankYouAssets": {
"interimThankYou": "I can not express how thankful I am for your generous donations. I can not wait to share the great news with my students that we will now have materials to create Art in our classroom. We will use Art to expand on our Writing, Reading, Math, and even Social Studies. Please know how much you have helped my students and my school. These materials will be shared with other students, other classes, and other grades. I can not wait to send my thank you package so that you may see pictures of all these students learning and loving Art. Thank You again.Ms. FerroneWith gratitude,Ms. Ferrone",
"photos": [
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/615000/615478/p615478_001_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/615000/615478/p615478_001_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/615000/615478/p615478_002_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/615000/615478/p615478_002_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/615000/615478/p615478_003_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/615000/615478/p615478_003_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/615000/615478/p615478_004_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/615000/615478/p615478_004_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/615000/615478/p615478_005_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/615000/615478/p615478_005_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/615000/615478/p615478_006_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/615000/615478/p615478_006_md.jpg"
}
],
"resultsLetter": "I do not know where to begin. I simply can not thank you enough. With your generous donations, I have been able to incorporate Art into my students’ daily lives. I feel as though I have been able to open another world for them. With your gifts, we have been using Art every day, from painting, to drawing and building, to Art projects, expressing ourselves, and much more. Now, my students know how to use a paint brush and they know that they can essentially create another world on paper. They are able to express themselves in numerous ways thanks to the supplies we obtained. Thanks to your support, my students are now really able to learn Art Education. Thank you so much for all you do.Very Truly Yours,Ms. FerroneWith gratitude,Ms. Ferrone"
}
},
{
"id": "600607",
"proposalURL": "https://www.donorschoose.org/project/help-us-get-started/600607/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=600607&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
"imageURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/user/uploads/small/u653017_sm.jpg?timestamp=1294713618135",
"title": "Help Us Get Started!!!!",
"shortDescription": "NYC just got rid of Teacher’s Choice, which was $110 they gave to teachers for their rooms, and expect teachers to pay for everything out of pocket in the upcoming school year! My students are...",
"fulfillmentTrailer": "My students need stuff, such as 10 clipboards, 6 sets of soft dice, a pocket chart, 3 hand held pointers and bulletin board supplies to start the year!",
"percentFunded": "100",
"costToComplete": "0.00",
"matchingFund": {
"matchingKey": "",
"name": "",
"logoURL": "",
"faqURL": "",
"amount": "0.00"
},
"totalPrice": "399.94",
"freeShipping": "true",
"teacherName": "Mrs. Soloff",
"gradeLevel": {
"id": "2",
"name": "Grades 3-5"
},
"povertyLevel": "High Poverty",
"schoolName": "",
"city": "",
"zip": "",
"state": "NY",
"latitude": "",
"longitude": "",
"zone": {
"id": "103",
"name": "New York (City)"
},
"subject": {
"id": "8",
"name": "Mathematics",
"groupId": "4"
},
"resource": {
"id": "6",
"name": "Other"
},
"expirationDate": "2011-12-23",
"fundingStatus": "funded",
"thankYouAssets": {
"interimThankYou": "I can’t begin to thank you all for donating to my project! It is great to see that you all share my vision for teaching.The tools that you have funded will help myself, and my students make our classroom look more inviting for those to visit. I am so excited for the Foam Dice, as they will help my students with their multiplication facts. The clipboards will give them a hard surface to take notes on during our literacy block. Thanks again for supporting my students. With gratitude,Mrs. Soloff",
"photos": [
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/600000/600607/p600607_001_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/600000/600607/p600607_001_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/600000/600607/p600607_002_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/600000/600607/p600607_002_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/600000/600607/p600607_003_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/600000/600607/p600607_003_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/600000/600607/p600607_004_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/600000/600607/p600607_004_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/600000/600607/p600607_005_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/600000/600607/p600607_005_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/600000/600607/p600607_006_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/600000/600607/p600607_006_md.jpg"
}
],
"resultsLetter": "This is just a small token of my gratitude for your donation to my classroom. My students can now be responsible for their behavior, using our new behavior chart and cards. My students know to come up to the chart when they they have done something wrong. The pencils are a huge hit. A lot of my students forget to bring sharpened pencils to school, but now we have extra for them to use. We love the foam dice we received. They make our math center much more enjoyable. The biggest hit of all, were the 3 passes we received. Earlier in the year, we had a pass, but it got misplaced. Now the girls and boys have their own pass, making trips to the lavatory easier.Thanks again for your donation. It means a lot to me students and I.With gratitude,Mrs. Soloff"
}
},
{
"id": "674911",
"proposalURL": "https://www.donorschoose.org/project/alphabet-knowledge/674911/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=674911&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
"imageURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/user/uploads/small/u1140270_sm.jpg?timestamp=1321028618109",
"title": "Alphabet Knowledge",
"shortDescription": "About half of my students are struggling with their letter and letter sounds. These materials would not only help them to learn their letter and letter sounds, but would make it even more...",
"fulfillmentTrailer": "My students need these materials including ink pads, stampers, sorting kits, and more to help them to learn their letter and letter sounds. It is such a vital part of beginning to read. Thank you so much for your help!!",
"percentFunded": "100",
"costToComplete": "0.00",
"matchingFund": {
"matchingKey": "",
"name": "",
"logoURL": "",
"faqURL": "",
"amount": "0.00"
},
"totalPrice": "247.65",
"freeShipping": "true",
"teacherName": "Ms. Rusco",
"gradeLevel": {
"id": "1",
"name": "Grades PreK-2"
},
"povertyLevel": "High Poverty",
"schoolName": "",
"city": "",
"zip": "",
"state": "KS",
"latitude": "",
"longitude": "",
"zone": {
"id": "222",
"name": "Kansas"
},
"subject": {
"id": "10",
"name": "Literacy",
"groupId": "6"
},
"resource": {
"id": "3",
"name": "Supplies"
},
"expirationDate": "2012-04-11",
"fundingStatus": "funded",
"thankYouAssets": {
"interimThankYou": "I can’t fully express my joy, excitement, and thanks for your donation to my project. It is great to see that you share my vision for reaching children. In reading, so the kids will know their alphabet and then able to read. The tools that you have funded will enable students to learn about the letter and letter sounds that they need for Kindergarten. In addition, I will be able to teach these concepts in a very fun, hands on approach. These concepts will help the students then learn to blend the sounds to make sight words and read!! I hope to share with my colleagues a new technique in learning. Thank you so much. I can’t wait to introduce these tools to the children.With gratitude,Ms. Rusco",
"photos": [
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/674000/674911/p674911_016_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/674000/674911/p674911_016_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/674000/674911/p674911_017_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/674000/674911/p674911_017_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/674000/674911/p674911_018_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/674000/674911/p674911_018_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/674000/674911/p674911_019_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/674000/674911/p674911_019_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/674000/674911/p674911_020_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/674000/674911/p674911_020_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/674000/674911/p674911_021_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/674000/674911/p674911_021_md.jpg"
}
],
"resultsLetter": "Thank you so much for your generous contribution to my classroom. These resources are invaluable to my students education. The stamps and stamp pad will be used all year long while learning about the alphabet and sight words!! The alphabet resources have really helped some of the students who are still struggling with letter and letter sounds, and will help all of my students in the fall when we are really working hard on the alphabet. I received the position a month before school and the classroom was recreated. In a two classroom building am the third classroom added because of all of the students that we had enroll. Therefore it is a hodge podge of materials pulled from different places and was an empty classroom, because there wasn’t one there before. The help with the purchasing of these resources has been such an amazing gift for my students and I. These resources will be used a lot all through the year! It was really nice to have help getting supplies for my classroom. As a first year teacher to the district I am spending a lot of my own money. It has been such a blessing to have help in getting supplies. Thank you seems so insufficient because I feel so grateful and it was such an incredible help. Thanks again, With gratitude,Ms. Rusco"
}
},
{
"id": "649795",
"proposalURL": "https://www.donorschoose.org/project/reinforcing-math-skills-the-fun-way/649795/?utm_source=api&utm_medium=feed&utm_content=bodylink&utm_campaign=DONORSCHOOSE",
"fundURL": "https://secure.donorschoose.org/donors/givingCart.html?proposalid=649795&donationAmount=45&utm_source=api&utm_medium=feed&utm_content=fundlink&utm_campaign=DONORSCHOOSE",
"imageURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/user/uploads/small/u783191_sm.jpg?timestamp=1317327212206",
"title": "Reinforcing Math Skills the Fun Way!",
"shortDescription": "My students love school. It’s a place where they feel safe and encouragehere school is where it is okay to dream and explore. Math, especially, is their favorite subject area. Help me make it a...",
"fulfillmentTrailer": "My students need interactive math games, like a Mastering Math Games Library, Bingo games, and more, to reinforce math skills everyday during math center time.",
"percentFunded": "100",
"costToComplete": "0.00",
"matchingFund": {
"matchingKey": "",
"name": "",
"logoURL": "",
"faqURL": "",
"amount": "0.00"
},
"totalPrice": "511.42",
"freeShipping": "true",
"teacherName": "Mr. Espinal",
"gradeLevel": {
"id": "2",
"name": "Grades 3-5"
},
"povertyLevel": "High Poverty",
"schoolName": "",
"city": "",
"zip": "",
"state": "NY",
"latitude": "",
"longitude": "",
"zone": {
"id": "103",
"name": "New York (City)"
},
"subject": {
"id": "8",
"name": "Mathematics",
"groupId": "4"
},
"resource": {
"id": "3",
"name": "Supplies"
},
"expirationDate": "2012-02-28",
"fundingStatus": "funded",
"thankYouAssets": {
"interimThankYou": "Thank you your donation. Today my project was fully funded! It is great to see that you share my vision for teaching children and ensuring that they all reach their full potential. The materials that you have helped fund will allow me to continue engaging my students as they continue to grow and improve their mathematical skills. It will allow them to put into practice the skills they’ve learned in a fun and interactive way. I can’t wait to tell them the good news. With gratitude,Mr. Espinal",
"photos": [
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/649000/649795/p649795_001_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/649000/649795/p649795_001_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/649000/649795/p649795_002_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/649000/649795/p649795_002_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/649000/649795/p649795_003_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/649000/649795/p649795_003_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/649000/649795/p649795_004_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/649000/649795/p649795_004_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/649000/649795/p649795_005_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/649000/649795/p649795_005_md.jpg"
},
{
"smallPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/small/649000/649795/p649795_006_sm.jpg",
"mediumPhotoURL": "http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/proposal/uploads/med/649000/649795/p649795_006_md.jpg"
}
],
"resultsLetter": "Thank you for your generous donation to my classroom. The math games that you donated have helped my students every single day. We’ve used them to practice skills previously taught, current skills and as enrichment for advance students. They have come in handy not just during math time, but also during test prep. It is amazing how quick a student can master a skill when practicing it with a game. Our school, like many around the country, is currently facing many budget cuts. As a result their is a limit to the resources that I am provided with. Without donors like you, thousands of classrooms in the United States would go without. With gratitude,Mr. Espinal"
}
}
],
"favorites": [],
"givingPages": [
{
"name": "Oliver “El Sabor Urbano” Hurst-Hiller",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=208318&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c208318_sm.jpg?1322584846043",
"amountDonated": "7546.14",
"numProposalsSupported": "30",
"mostRecentDonationDate": "2012-02-27 16:53:28.415"
},
{
"name": "Oliver Hurst-Hiller’s Mustache “El Aguila”",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=87926&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c87926_sm.jpg?1287610623792",
"amountDonated": "3514.91",
"numProposalsSupported": "15",
"mostRecentDonationDate": "2011-02-10 18:56:26.557"
},
{
"name": "Oliver’s Mustache “La Revolucion”",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=25298&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c25298_sm.jpg?1259851491088",
"amountDonated": "3936.15",
"numProposalsSupported": "36",
"mostRecentDonationDate": "2010-08-17 14:12:38.283"
},
{
"name": "Oliver “Little Havana” Hurst-Hiller",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=19289&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c19289_sm.jpg",
"amountDonated": "2670.72",
"numProposalsSupported": "18",
"mostRecentDonationDate": "2009-01-12 16:45:53.73"
}
],
"memberGivingPages": [
{
"name": "Alexis Ohanian + Breadpig’s Giving Page",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=229348&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c229348_sm.jpg?1330967925413"
},
{
"name": "In Memory of Lily, Sarah & Grace",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=227602&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c227602_sm.png?1334941064052"
},
{
"name": "Dan “‘Stache Money Millionaires” Blum",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=204849&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c204849_sm.jpg?1320805566485"
},
{
"name": "Todd “Vaclav” Florio 2011",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=202419&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c202419_sm.jpg?1322417739640"
},
{
"name": "Rebuild Joplin Schools!",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=155807&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c155807_sm.jpg?1337620647503"
},
{
"name": "Rachel Sklar’s Charitini Give-Back Birthday",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=114382&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c114382_sm.png?1291217048718"
},
{
"name": "Dan “Stache Gordon” Blum",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=67392&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c67392_sm.jpg?1285708098237"
},
{
"name": "Eloise Gale’s Giving Page",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=27827&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c27827_sm.jpg?1266532756644"
},
{
"name": "Chris Michael’s Mustache says ‘Do it for the kiddos!’",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=208395&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c208395_sm.jpg?1323096120293"
},
{
"name": "Oliver “El Sabor Urbano” Hurst-Hiller",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=208318&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c208318_sm.jpg?1322584846043"
},
{
"name": "Occupy My Lip... for the Kids!",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=207296&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c207296_sm.jpg?1322163425227"
},
{
"name": "Justin “Mustache for the Masses” Steinberg",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=206116&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c206116_sm.jpg?1323120564924"
},
{
"name": "Alan McGee’s Mustache",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=205984&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c205984_sm.jpg?1321490369235"
},
{
"name": "Pierre Stroud’s Mustache 2011",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=205781&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c205781_sm.jpg?1321376438926"
},
{
"name": "John Roberts’ Mustache",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=205256&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c205256_sm.jpg?1321035194007"
},
{
"name": "The ImmerStache",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=204817&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c204817_sm.jpg?1320789039979"
},
{
"name": "Jon Wolanske’s Cookie-Duster",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=204547&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c204547_sm.jpg?1320872020626"
},
{
"name": "Zach’s Fuzzy Fun-Lip",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=204359&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c204359_sm.jpg?1321908441877"
},
{
"name": "Mindblogglingly Magnanimous and Majestically Mustachioed Men of Kiva",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=204291&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c204291_sm.jpg?1320451271837"
},
{
"name": "Cesar “Maximus Rises” Bocanegra",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=204132&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c204132_sm.jpg?1320885688975"
},
{
"name": "Justin Hendrix’s Mustache",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=201776&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c201776_sm.jpg?1323744296332"
},
{
"name": "The Pirate 2011",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=201588&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c201588_sm.jpg?1319004166904"
},
{
"name": "Jane & Joe’s Celebration",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=201055&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c201055_sm.jpg?1318706518092"
},
{
"name": "Pranav Saha’s Sweet ‘Stache of 2011",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=198258&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c198258_sm.jpg?1318788758764"
},
{
"name": "Global Ignite Week New York",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=142485&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c142485_sm.jpg?1297191075201"
},
{
"name": "Global Ignite Week Seattle",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=142482&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c142482_sm.jpg?1297191252250"
},
{
"name": "Mitch “Mursestache” Goldman",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=139919&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c139919_sm.jpg?1298955259756"
},
{
"name": "Nic’s TutStache for Tikes",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=137257&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c137257_sm.jpg?1297307331102"
},
{
"name": "The 2011 Contest: Superpage",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=136864&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c136864_sm.jpg?1301666584899"
},
{
"name": "Joe Romanelli’s Awful ‘Stache",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=135595&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c135595_sm.jpg?1297449412352"
},
{
"name": "Kurt “King Stache” Mueller",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=126926&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c126926_sm.jpg?1296571439327"
},
{
"name": "Todd “Vaclav” Florio 2010",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=105728&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c105728_sm.jpg?1291662092604"
},
{
"name": "Theresa Stanley’s Mustache",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=105658&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c105658_sm.jpg?1290114109631"
},
{
"name": "”Pacquiao” ? (Jeffrey LeStyne’s Mustache)",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=105589&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c105589_sm.jpg?1322592461013"
},
{
"name": "David Rothauser’s Mustache",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=104842&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c104842_sm.jpg?1290794394917"
},
{
"name": "Chris Michael’s Mustache",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=104523&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c104523_sm.jpg?1289337243975"
},
{
"name": "Alexis Ohanian’s Mustache",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=104409&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c104409_sm.jpg?1289326850597"
},
{
"name": "Maddeningly Muscular Magnificently Mustachioed Men of Kiva",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=101610&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c101610_sm.png?1289002084983"
},
{
"name": "Dr. Andres Alonso’s Mustache",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=100302&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c100302_sm.jpg?1288882025492"
},
{
"name": "Jon Wolanske’s Cookie-duster",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=91913&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c91913_sm.jpg?1288156637064"
},
{
"name": "Justin Hendrix’s Mustache",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=89264&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c89264_sm.jpg?1290203044814"
},
{
"name": "Oliver Hurst-Hiller’s Mustache “El Aguila”",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=87926&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c87926_sm.jpg?1287610623792"
},
{
"name": "Alan McGee’s Mustache",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=86203&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c86203_sm.jpg?1290118174301"
},
{
"name": "Pierre Stroud’s Mustache 2010",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=79739&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c79739_sm.jpg?1289966726297"
},
{
"name": "Alex Estrovitz Mustache 2010",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=78906&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c78906_sm.png?1286723819595"
},
{
"name": "Josh Lynch’s Mustache",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=70033&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c70033_sm.jpg?1285872585157"
},
{
"name": "The Gam Classroom Initiative",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=69756&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c69756_sm.jpg?1285858396252"
},
{
"name": "Fred Wilson’s 2010 Challenge",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=62851&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c62851_sm.jpg?1285347505979"
},
{
"name": "”The Rainmaker” ? Jordan Melcon’s Mustache",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=60836&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c60836_sm.jpg?1297350282883"
},
{
"name": "Galveston, TX ? Velasquez Wedding Education Celebration",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=26842&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c26842_sm.jpg?1261443485275"
},
{
"name": "Pierre Stroud’s Mustache ’09",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=25764&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c25764_sm.jpg"
},
{
"name": "Jon Wolanske’s Mustache",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=25752&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c25752_sm.jpg?1260309945433"
},
{
"name": "John Squires’ Mustache “The Debonair”",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=25659&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c25659_sm.jpg?1259565618325"
},
{
"name": "Dave “Al Hairbosky” Puketza",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=25647&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c25647_sm.png"
},
{
"name": "Oliver’s Mustache “La Revolucion”",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=25298&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c25298_sm.jpg?1259851491088"
},
{
"name": "Mitch “Nurstache” Goldman",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=25272&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c25272_sm.jpg?1265640269555"
},
{
"name": "Adam “Stache Rock” Ellsworth",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=24850&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c24850_sm.jpg"
},
{
"name": "Michael Szarowicz’s “El Grande Bigote”",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=24626&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c24626_sm.jpg?1265384305589"
},
{
"name": "Charles Best’s Give-Back Birthday",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=24104&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c24104_sm.jpg"
},
{
"name": "Livia Stone’s Giving Page",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=24078&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c24078_sm.jpg?1300574002961"
},
{
"name": "Stack Overflow",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=23911&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c23911_sm.jpg"
},
{
"name": "David Berkowitz’s Giving Page",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=23868&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c23868_sm.jpg"
},
{
"name": "Seattle 2.0",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=23772&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c23772_sm.png"
},
{
"name": "This is going to be BIG!",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=23771&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c23771_sm.jpg"
},
{
"name": "O’Reilly",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=23770&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c23770_sm.png"
},
{
"name": "innonate’s classroom challenge",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=23216&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c23216_sm.jpg"
},
{
"name": "Caleb and Rosha’s Wedding",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=22825&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c22825_sm.jpg"
},
{
"name": "Maya Voskoboynikov’s Give-Back Birthday",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=22134&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c22134_sm.jpg"
},
{
"name": "Missy & Scott’s Give Back Birthday Celebration",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=20943&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c20943_sm.jpg"
},
{
"name": "Stephen Colbert’s Give-Back Birthday Page",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=20855&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c20855_sm.jpg"
},
{
"name": "The Army",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=20845&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c20845_sm.png"
},
{
"name": "Joel “Steel Brush” Tompkins",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=19967&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c19967_sm.jpg"
},
{
"name": "Cash for Stache Brigade",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=19742&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c19742_sm.jpg"
},
{
"name": "Oliver “Little Havana” Hurst-Hiller",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=19289&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c19289_sm.jpg"
},
{
"name": "O’Reilly’s Giving Page",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=19068&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c19068_sm.png"
},
{
"name": "All Things D 2008 Challenge!",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=19062&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE",
"photoURL": "https://a248.e.akamai.net/f/248/48906/2d/secure.donorschoose.org/images/givingpage/uploads/small/c19062_sm.png"
},
{
"name": "NCAA Fund the Future",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=139206&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE"
},
{
"name": "Welcome Redditors!",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=39361&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE"
},
{
"name": "BlackPlanet Rising’s Giving Page",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=22268&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE"
},
{
"name": "Rachel & Lizzie’s Birthday Giving Page!",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=209388&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE"
},
{
"name": "Manhattan User’s Guide October 2011 Giving Page",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=201828&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE"
},
{
"name": "Joanne and Fred Wilson’s 50th Birthday Celebration",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=172649&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE"
},
{
"name": "Mateo Jaramillo’s Mustache",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=102349&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE"
},
{
"name": "Biz Stone’s Giving Page",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=23941&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE"
},
{
"name": "PayPal Shopping “Make It Count”",
"URL": "https://www.donorschoose.org/donors/viewChallenge.html?id=22257&utm_source=api&utm_medium=feed&utm_content=givingpagelink&utm_campaign=DONORSCHOOSE"
}
],
"proposalMessages": [
{
"category": "PHOTOS_AND_IMPACT",
"createdOn": "2012-05-11 00:28:39.454",
"author": {
"id": "114180",
"URL": "https://www.donorschoose.org/we-teach/114180?utm_source=api&utm_medium=feed&utm_content=teacherprofile&utm_campaign=DONORSCHOOSE",
"type": "teacher",
"name": "Mr. Istel"
},
"proposal": {
"id": "682830",
"URL": "https://www.donorschoose.org/project/a-macbook-laptop-for-every-lap/682830/?utm_source=api&utm_medium=feed&utm_content=proposal&utm_campaign=DONORSCHOOSE",
"name": "A Macbook Laptop for Every Lap!"
},
"message": "<a href=”https://www.donorschoose.org/project/a-macbook-laptop-for-every-lap/682830/#photos”><img alt=”Photos” class=”posted” src=”http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/project/posted_photos.gif”></a><span>Photos and Impact Letter posted for:</span> <a href=”https://www.donorschoose.org/project/a-macbook-laptop-for-every-lap/682830/#photos”>A Macbook Laptop for Every Lap!</a>"
},
{
"category": "PHOTOS_AND_IMPACT",
"createdOn": "2012-05-02 20:35:51.326",
"author": {
"id": "502928",
"URL": "https://www.donorschoose.org/we-teach/502928?utm_source=api&utm_medium=feed&utm_content=teacherprofile&utm_campaign=DONORSCHOOSE",
"type": "teacher",
"name": "Ms. Phillips"
},
"proposal": {
"id": "609189",
"URL": "https://www.donorschoose.org/project/my-own-little-corner-for-reading/609189/?utm_source=api&utm_medium=feed&utm_content=proposal&utm_campaign=DONORSCHOOSE",
"name": "My Own Little Corner for Reading!"
},
"message": "<a href=”https://www.donorschoose.org/project/my-own-little-corner-for-reading/609189/#photos”><img alt=”Photos” class=”posted” src=”http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/project/posted_photos.gif”></a><span>Photos and Impact Letter posted for:</span> <a href=”https://www.donorschoose.org/project/my-own-little-corner-for-reading/609189/#photos”>My Own Little Corner for Reading!</a>"
},
{
"category": "PHOTOS_AND_IMPACT",
"createdOn": "2012-05-01 17:04:02.488",
"author": {
"id": "1061710",
"URL": "https://www.donorschoose.org/we-teach/1061710?utm_source=api&utm_medium=feed&utm_content=teacherprofile&utm_campaign=DONORSCHOOSE",
"type": "teacher",
"name": "Mrs. Bernd"
},
"proposal": {
"id": "646947",
"URL": "https://www.donorschoose.org/project/learning-and-living-healthy-lifestyles/646947/?utm_source=api&utm_medium=feed&utm_content=proposal&utm_campaign=DONORSCHOOSE",
"name": "Learning and Living Healthy Lifestyles"
},
"message": "<a href=”https://www.donorschoose.org/project/learning-and-living-healthy-lifestyles/646947/#photos”><img alt=”Photos” class=”posted” src=”http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/project/posted_photos.gif”></a><span>Photos and Impact Letter posted for:</span> <a href=”https://www.donorschoose.org/project/learning-and-living-healthy-lifestyles/646947/#photos”>Learning and Living Healthy Lifestyles</a>"
},
{
"category": "ITY",
"createdOn": "2012-04-30 21:45:18.791",
"author": {
"id": "107631",
"URL": "https://www.donorschoose.org/we-teach/107631?utm_source=api&utm_medium=feed&utm_content=teacherprofile&utm_campaign=DONORSCHOOSE",
"type": "teacher",
"name": "Mrs. Mitsuse"
},
"proposal": {
"id": "710784",
"URL": "https://www.donorschoose.org/project/encouraging-environmental-awareness-wit/710784/?utm_source=api&utm_medium=feed&utm_content=proposal&utm_campaign=DONORSCHOOSE",
"name": "Encouraging Environmental Awareness with Great Literature"
},
"message": "<a href=”https://www.donorschoose.org/project/encouraging-environmental-awareness-wit/710784/#letter”><img alt=”Teacher Mail” class=”posted” src=”http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/project/posted_mail.gif”></a><span>Teacher Mail posted for:</span> <a href=”https://www.donorschoose.org/project/encouraging-environmental-awareness-wit/710784/#letter”> Encouraging Environmental Awareness with Great Literature</a>"
},
{
"category": "ITY",
"createdOn": "2012-04-30 19:23:03.533",
"author": {
"id": "1247169",
"URL": "https://www.donorschoose.org/we-teach/1247169?utm_source=api&utm_medium=feed&utm_content=teacherprofile&utm_campaign=DONORSCHOOSE",
"type": "teacher",
"name": "Mr. Powell"
},
"proposal": {
"id": "737744",
"URL": "https://www.donorschoose.org/project/technology-for-future-engineers/737744/?utm_source=api&utm_medium=feed&utm_content=proposal&utm_campaign=DONORSCHOOSE",
"name": "Technology for Future Engineers"
},
"message": "<a href=”https://www.donorschoose.org/project/technology-for-future-engineers/737744/#letter”><img alt=”Teacher Mail” class=”posted” src=”http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/project/posted_mail.gif”></a><span>Teacher Mail posted for:</span> <a href=”https://www.donorschoose.org/project/technology-for-future-engineers/737744/#letter”>Technology for Future Engineers</a>"
},
{
"category": "ITY",
"createdOn": "2012-04-30 14:27:13.68",
"author": {
"id": "139499",
"URL": "https://www.donorschoose.org/we-teach/139499?utm_source=api&utm_medium=feed&utm_content=teacherprofile&utm_campaign=DONORSCHOOSE",
"type": "teacher",
"name": "Mrs. Gundlach"
},
"proposal": {
"id": "749561",
"URL": "https://www.donorschoose.org/project/everyone-is-a-scientist/749561/?utm_source=api&utm_medium=feed&utm_content=proposal&utm_campaign=DONORSCHOOSE",
"name": "Everyone Is a Scientist"
},
"message": "<a href=”https://www.donorschoose.org/project/everyone-is-a-scientist/749561/#letter”><img alt=”Teacher Mail” class=”posted” src=”http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/project/posted_mail.gif”></a><span>Teacher Mail posted for:</span> <a href=”https://www.donorschoose.org/project/everyone-is-a-scientist/749561/#letter”>Everyone Is a Scientist</a>"
},
{
"category": "DONATION",
"createdOn": "2012-04-30 11:29:42.313",
"author": {
"id": "47474",
"URL": "https://www.donorschoose.org/oliver?utm_source=api&utm_medium=feed&utm_content=donorprofile&utm_campaign=DONORSCHOOSE",
"type": "donor",
"name": "Oliver Hurst-Hiller",
"city": "Brooklyn",
"state": "NY",
"stateName": "New York"
},
"proposal": {
"id": "749561",
"URL": "https://www.donorschoose.org/project/everyone-is-a-scientist/749561/?utm_source=api&utm_medium=feed&utm_content=proposal&utm_campaign=DONORSCHOOSE",
"name": "Everyone Is a Scientist"
},
"message": "”I used to live in Seattle and still enjoy supporting the community.”"
},
{
"category": "DONATION",
"createdOn": "2012-04-29 16:39:04.31",
"author": {
"id": "47474",
"URL": "https://www.donorschoose.org/oliver?utm_source=api&utm_medium=feed&utm_content=donorprofile&utm_campaign=DONORSCHOOSE",
"type": "donor",
"name": "Oliver Hurst-Hiller",
"city": "Brooklyn",
"state": "NY",
"stateName": "New York"
},
"proposal": {
"id": "710784",
"URL": "https://www.donorschoose.org/project/encouraging-environmental-awareness-wit/710784/?utm_source=api&utm_medium=feed&utm_content=proposal&utm_campaign=DONORSCHOOSE",
"name": "Encouraging Environmental Awareness with Great Literature"
},
"message": ""
},
{
"category": "PHOTOS_AND_IMPACT",
"createdOn": "2012-04-29 11:28:30.882",
"author": {
"id": "107323",
"URL": "https://www.donorschoose.org/we-teach/107323?utm_source=api&utm_medium=feed&utm_content=teacherprofile&utm_campaign=DONORSCHOOSE",
"type": "teacher",
"name": "Mrs. Moorman"
},
"proposal": {
"id": "681845",
"URL": "https://www.donorschoose.org/project/bringing-music-into-the-classroom/681845/?utm_source=api&utm_medium=feed&utm_content=proposal&utm_campaign=DONORSCHOOSE",
"name": "Bringing Music Into the Classroom"
},
"message": "<a href=”https://www.donorschoose.org/project/bringing-music-into-the-classroom/681845/#photos”><img alt=”Photos” class=”posted” src=”http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/project/posted_photos.gif”></a><span>Photos and Impact Letter posted for:</span> <a href=”https://www.donorschoose.org/project/bringing-music-into-the-classroom/681845/#photos”>Bringing Music Into the Classroom</a>"
},
{
"category": "ITY",
"createdOn": "2012-04-27 14:37:16.949",
"author": {
"id": "673006",
"URL": "https://www.donorschoose.org/we-teach/673006?utm_source=api&utm_medium=feed&utm_content=teacherprofile&utm_campaign=DONORSCHOOSE",
"type": "teacher",
"name": "Mrs. Folan"
},
"proposal": {
"id": "790577",
"URL": "https://www.donorschoose.org/project/teaching-literacy-through-art/790577/?utm_source=api&utm_medium=feed&utm_content=proposal&utm_campaign=DONORSCHOOSE",
"name": "Teaching Literacy Through Art"
},
"message": "<a href=”https://www.donorschoose.org/project/teaching-literacy-through-art/790577/#letter”><img alt=”Teacher Mail” class=”posted” src=”http://a248.e.akamai.net/f/248/48906/2d/www.donorschoose.org/images/project/posted_mail.gif”></a><span>Teacher Mail posted for:</span> <a href=”https://www.donorschoose.org/project/teaching-literacy-through-art/790577/#letter”>Teaching Literacy Through Art</a>"
}
]
}