Skip to main content
GET
/
v2
/
client
/
teams
/
{id}
Get Team
curl --request GET \
  --url https://api.crowdchange.dev/v2/client/teams/{id} \
  --header 'Authorization: <api-key>'
{
  "id": 1,
  "name": "Team A",
  "description": "Team description",
  "images": {
    "original": "https://img.crowdchange.dev/files/abc.png"
  },
  "amount_goal": 1000,
  "amount_goal_formatted": "$1,000",
  "amount_raised": 550,
  "amount_raised_formatted": "$550",
  "n_donors": 10,
  "n_pages": 50,
  "url": "https://demo.crowdchange.dev/1/team/2",
  "language": "en",
  "fundraiser": {
    "id": 1,
    "name": "Gala Night",
    "amount_goal": 10000,
    "amount_raised": 8000,
    "amount_raised_formatted": "$8,000",
    "url": "https://demo.crowdchange.dev/1",
    "language": "en",
    "organization": {
      "id": 1,
      "name": "Crowdchange",
      "custom_id": "CrowdchangeID"
    }
  },
  "user": {
    "name": "John Snow",
    "first_name": "John",
    "last_name": "Snow",
    "title": "Mr."
  }
}

Path parameters

id
integer
required
Team ID.

Response

id
integer
Team ID.
name
string
Team name.
description
string
Team description
images
object
amount_goal
number
Goal amount.
amount_goal_formatted
string
Formatted goal amount of the team, includes currency symbol.
amount_raised
number
Amount raised by the team.
amount_raised_formatted
string
Formatted amount raised by the team, includes currency symbol.
n_donors
number
Number of donors
n_pages
integer
Number of pages.
url
string
URL to team’s page.
language
string
Team language. Allowed values: en, fr
fundraiser
object
Campaign that team belongs to.
user
object
Other responses
StatusDescription
400Bad Request
403Forbidden
{
  "id": 1,
  "name": "Team A",
  "description": "Team description",
  "images": {
    "original": "https://img.crowdchange.dev/files/abc.png"
  },
  "amount_goal": 1000,
  "amount_goal_formatted": "$1,000",
  "amount_raised": 550,
  "amount_raised_formatted": "$550",
  "n_donors": 10,
  "n_pages": 50,
  "url": "https://demo.crowdchange.dev/1/team/2",
  "language": "en",
  "fundraiser": {
    "id": 1,
    "name": "Gala Night",
    "amount_goal": 10000,
    "amount_raised": 8000,
    "amount_raised_formatted": "$8,000",
    "url": "https://demo.crowdchange.dev/1",
    "language": "en",
    "organization": {
      "id": 1,
      "name": "Crowdchange",
      "custom_id": "CrowdchangeID"
    }
  },
  "user": {
    "name": "John Snow",
    "first_name": "John",
    "last_name": "Snow",
    "title": "Mr."
  }
}