Download OpenAPI specification:Download
Welcome to the Tiltify V5 API docmentation site.
This is the public API for Tiltify. It is intended to be used by third party developers to build integrations with Tiltify. Additional documentation may be found at the Tiltify Developers documentation site.
The API uses the OpenAPI Specification (OAS) to define the API. More information about the OpenAPI Specification can be found at https://swagger.io/specification/.
Tiltify uses OAuth 2.0 access tokens to authenticate API requests. You may get an Application access_token
or a User access_token
.
To authenticate, you will need to create an application in the Tiltify User Dashboard, and use the generated credentials.
The method to get an application access token follows the Client Credentials Oauth2 grant flow.
You may give the required parameters to the Oauth Token Endpoint to get an access token for use with the api directly.
The method to get a user access token follows the OAuth2 Authorization Grant flow. The following is a specific example of how to retrieve A User Access token using OAuth2
This example will be using the following values as needed.
To begin with, send a user in a browser to the Tiltify OAuth Authorization url. Include your Client ID, and the response type of code
as query parameters.
You may include your redirect URI if you have more than one. A space separated list of scopes may also be added, however, if not included, the public
scope will be automatically selected.
https://v5api.tiltify.com/oauth/authorize?&client_id=1234&response_type=code&redirect_uri=https%3A%2F%2Fwww.example.com%2Fredirect&scope=public
After signing in and authorizing, the user will be redirected back to your chosen redirect URI with a query parameter of code
, containing the code used to fetch the access token.
https://www.example.com/redirect?code=1234abcdef
The code should be passed to your server backend as the following steps require your secret key, which should not be exposed to the public.
To retrieve the User Access Token, a post request must be made to the Token URL. In the body of the url are the following fields in Form Data format. Note specifically that code is the code retrieved from the first step.
client_id=1234
redirect_uri=https://www.example.com/redirect
code=1234abcdef
grant_type=authorization_code
Tiltify will return a response like the following:
{
"access_token": "ab6a592346444dea97170837e104d8a5ab6a592346444dea97170837e104d8a5",
"created_at": "2023-01-27T19:32:03Z",
"expires_in": 7200,
"refresh_token": "njjjytm3otetmgrjmi00yjawlwe4zgytzjixy2mzm2y3njawcg121231999393a3",
"scope": "public",
"token_type": "bearer"
}
This access token may now be used as shown below to make requests. When used with the /current-user endpoint, the full user
object is returned.
Add the Authorization header to your HTTP request.
Authorization: Bearer <access_token>
Example:
Authorization: Bearer ab6a592346444dea97170837e104d8a5ab6a592346444dea97170837e104d8a5
When an initial access token is created, a refresh token will be provided. The refresh token can be used to get a new access token when the current one expires. To do this, make a post request to the token url with grant_type set to refresh_token
.
Example:
To refresh the User Access Token, a post request must be made to the Token URL. In the body of the url are the following fields in Form Data or json format.
client_id=1234
client_secret=asdf
grant_type=refresh_token
refresh_token=njjjytm3otetmgrjmi00yjawlwe4zgytzjixy2mzm2y3njawcg121231999393a3
Tiltify provides a dashboard to subscribe and test campaign and campaign donation webhooks.
To register a webhook, visit the Developer Dashboard
In order to begin registering webhooks, you must first create an application.
In the application dashboard, there will be a side navigation option for Webhooks
.
Add Webhook
buttonEvents
submenu and add and event to subscribe to using the Add event
button.Setup > Information
...
button and select EditUpdate Event
. Including private data may include sensitive information, so please ensure that you secure your application.You should now receive updates for those events on your webhook url.
Caution: When we send a webhook we expect the endpoint to respond with a 200-299 status code. If we do not receive that, we deactivate the webhook after about an hour.
Once a webhook is created, you may send test messages through the Testing
Submenu.
An example payload will be shown for each event type.
Click Send Test
to initiate the test.
Returns an auction house by its user slug and auction house slug
user_slug required | string User slug |
auction_house_slug required | string Auction house slug |
{- "data": {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "banner": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "campaign_id": "9ce7a761-19e5-49c4-850d-4cdd19d0be74",
- "cause_id": "3e091031-78bb-4749-9ef2-6fd354e642b3",
- "description": "My Awesome weekend auction house.",
- "fundraising_event_id": "2e057777-d507-4251-84f3-e48f3defa211",
- "id": "e9d2ca1b-b3aa-4126-97d3-a771faa6a219",
- "inserted_at": "2025-06-30T15:59:23.926111Z",
- "name": "My Awesome Auction House",
- "pledged_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "pledged_total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "published_at": "2025-06-30T15:59:23.926123Z",
- "retired_at": "2025-06-30T15:59:23.926127Z",
- "slug": "my-awesome-auction-house",
- "status": "published",
- "team_event_id": "f268869f-1211-4e29-ae41-8dd570bea918",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2025-06-30T15:59:23.926133Z",
- "user_id": "b17c2ccd-d45e-4b70-803a-1a4e827e5cc0"
}
}
Returns a auction house by its ID
auction_house_id required | string Auction House ID |
{- "data": {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "banner": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "campaign_id": "9ce7a761-19e5-49c4-850d-4cdd19d0be74",
- "cause_id": "3e091031-78bb-4749-9ef2-6fd354e642b3",
- "description": "My Awesome weekend auction house.",
- "fundraising_event_id": "2e057777-d507-4251-84f3-e48f3defa211",
- "id": "e9d2ca1b-b3aa-4126-97d3-a771faa6a219",
- "inserted_at": "2025-06-30T15:59:23.926111Z",
- "name": "My Awesome Auction House",
- "pledged_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "pledged_total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "published_at": "2025-06-30T15:59:23.926123Z",
- "retired_at": "2025-06-30T15:59:23.926127Z",
- "slug": "my-awesome-auction-house",
- "status": "published",
- "team_event_id": "f268869f-1211-4e29-ae41-8dd570bea918",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2025-06-30T15:59:23.926133Z",
- "user_id": "b17c2ccd-d45e-4b70-803a-1a4e827e5cc0"
}
}
auction_house_id required | string Auction House ID |
created_before | string Example: created_before=2021-11-02T14:24:55.811924Z Returns only auction items that have been updated before the given moment in ISO8601 format |
created_after | string Example: created_after=2021-11-02T14:24:55.811924Z Returns only auction items that have been updated after the given moment in ISO8601 format |
updated_before | string Example: updated_before=2021-11-02T14:24:55.811924Z Returns only auction items that have been updated before the given moment in ISO8601 format |
updated_after | string Example: updated_after=2021-11-02T14:24:55.811924Z Returns only auction items that have been updated after the given moment in ISO8601 format |
status | string Example: status=completed Status of the auction item. One of: active, or completed |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "activated_at": "2025-06-30T15:59:22.654402Z",
- "completed_at": "2025-06-30T15:59:22.654417Z",
- "description": "My Awesome weekend auction item.",
- "ends_at": "2025-06-30T15:59:22.654420Z",
- "fair_market_value": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "55acc05e-141a-43bb-892f-d247b980f473",
- "images": [
- {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}
], - "inserted_at": "2025-06-30T15:59:23.993596Z",
- "legal": "This is a legal disclaimer.",
- "name": "My Awesome Auction Item",
- "rules": "To bid you must be in the USA.",
- "short_description": "short auction item.",
- "starting_bid": {
- "currency": "USD",
- "value": "182.32"
}, - "starts_at": "2025-06-30T15:59:23.993611Z",
- "status": "active"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Returns a auction item by its ID
auction_house_id required | string Auction House ID |
auction_item_id required | string Auction Item ID |
{- "data": {
- "activated_at": "2025-06-30T15:59:22.654402Z",
- "completed_at": "2025-06-30T15:59:22.654417Z",
- "description": "My Awesome weekend auction item.",
- "ends_at": "2025-06-30T15:59:22.654420Z",
- "fair_market_value": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "55acc05e-141a-43bb-892f-d247b980f473",
- "images": [
- {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}
], - "inserted_at": "2025-06-30T15:59:23.993596Z",
- "legal": "This is a legal disclaimer.",
- "name": "My Awesome Auction Item",
- "rules": "To bid you must be in the USA.",
- "short_description": "short auction item.",
- "starting_bid": {
- "currency": "USD",
- "value": "182.32"
}, - "starts_at": "2025-06-30T15:59:23.993611Z",
- "status": "active"
}
}
auction_house_id required | string Auction House ID |
auction_item_id required | string Auction Item ID |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "auction_house_id": "a4e9cc4f-ee3d-46a1-999c-e28cfb6e337c",
- "auction_item_id": "7313517d-ac59-464e-9576-b3c4e452cd40",
- "current_winner": false,
- "id": "7d84941e-4141-4524-abbf-e5324b28da5e",
- "inserted_at": "2025-06-30T15:59:23.909511Z",
- "public_name": "John Doe",
- "removed_at": "2025-06-30T15:59:23.909531Z",
- "updated_at": "2025-06-30T15:59:23.909527Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Returns an auction house by its cause slug and auction house slug
cause_slug required | string Caus slug |
auction_house_slug required | string Auction house slug |
{- "data": {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "banner": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "campaign_id": "9ce7a761-19e5-49c4-850d-4cdd19d0be74",
- "cause_id": "3e091031-78bb-4749-9ef2-6fd354e642b3",
- "description": "My Awesome weekend auction house.",
- "fundraising_event_id": "2e057777-d507-4251-84f3-e48f3defa211",
- "id": "e9d2ca1b-b3aa-4126-97d3-a771faa6a219",
- "inserted_at": "2025-06-30T15:59:23.926111Z",
- "name": "My Awesome Auction House",
- "pledged_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "pledged_total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "published_at": "2025-06-30T15:59:23.926123Z",
- "retired_at": "2025-06-30T15:59:23.926127Z",
- "slug": "my-awesome-auction-house",
- "status": "published",
- "team_event_id": "f268869f-1211-4e29-ae41-8dd570bea918",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2025-06-30T15:59:23.926133Z",
- "user_id": "b17c2ccd-d45e-4b70-803a-1a4e827e5cc0"
}
}
campaign_id required | string Campaign ID or legacy ID |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "description": null,
- "ends_at": "2025-06-30T15:59:22.265718Z",
- "id": "3b974d93-75cc-45c7-a4ea-4b2825570ca9",
- "inserted_at": "2025-06-30T15:59:22.265764Z",
- "legacy_id": 437879901,
- "name": "Holiday Special Livestream",
- "starts_at": "2025-06-30T15:59:22.265783Z",
- "updated_at": "2025-06-30T15:59:22.265788Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
campaign_id required | string Campaign ID or legacy ID |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "current_value": "44.4",
- "distance_unit": "mile",
- "goal": "1000",
- "id": "a12daef8-9e3e-4745-b1d9-047e7a85a2b0",
- "type": "Running"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
campaign_id required | string Campaign ID |
status | string Enum: "published" "retired" Example: status=published Use this parameter to filter campaigns by the given status. |
updated_after | string Example: updated_after=2021-11-02T14:24:55.811924Z Returns only campaigns that have been updated after the given moment in ISO8601 format |
updated_before | string Example: updated_before=2021-11-02T14:24:55.811924Z Returns only campaigns that have been updated before the given moment in ISO8601 format |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "cause_id": "027a8c83-dc5e-4ec7-88e4-f72502bef8ca",
- "description": "My Awesome weekend campaign.",
- "fundraising_event_id": "42da2ccd-8f98-4f2c-9ce1-ffc7d62a27cd",
- "goal": {
- "currency": "USD",
- "value": "182.32"
}, - "has_schedule": false,
- "id": "52280ba8-7639-4ed2-b0a7-48af9141ad86",
- "inserted_at": "2025-06-30T15:59:24.023276Z",
- "legacy_id": 394782949,
- "livestream": {
- "channel": "tiltify",
- "type": "twitch"
}, - "name": "My Awesome Campaign",
- "original_goal": {
- "currency": "USD",
- "value": "182.32"
}, - "parent_facts": [
- {
- "id": "9f7dd842-a64d-4495-a422-d31565b963df",
- "name": "Charity",
- "usage_type": "cause"
}, - {
- "id": "9f7dd842-a64d-4495-a422-d31565b963df",
- "name": "Massive Fundraiser",
- "usage_type": "fundraising_event_activation"
}
], - "published_at": "2025-06-30T15:59:24.023306Z",
- "retired_at": null,
- "slug": "my-awesome-campaign",
- "status": "published",
- "supporting_type": "none",
- "team_campaign_id": "85ada071-eb80-4812-ab7c-e9bd5bd7a003",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2025-06-30T15:59:24.023312Z",
- "user": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Professional twitch streamer who likes charity!",
- "id": "a1b05830-ee42-4f17-87e6-0c7775a5559e",
- "legacy_id": 579952411,
- "slug": "username",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "username": "UserName"
}, - "user_id": "05046e9d-79e2-4aa4-acb9-54bd4f66127a"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
campaign_id required | string Campaign ID |
time_type | string Enum: "daily" "weekly" "monthly" "yearly" "ytd" "all" Example: time_type=all The time range to use in leaderboard generation |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "heat": null,
- "id": "424679dd-d536-4256-8ae9-4e0398b40b37",
- "name": "Awesome Team",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Returns a Campaign by its user slug and campaign slug
user_slug required | string User Slug |
campaign_slug required | string Campaign Slug |
{- "data": {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "cause_id": "027a8c83-dc5e-4ec7-88e4-f72502bef8ca",
- "description": "My Awesome weekend campaign.",
- "fundraising_event_id": "42da2ccd-8f98-4f2c-9ce1-ffc7d62a27cd",
- "goal": {
- "currency": "USD",
- "value": "182.32"
}, - "has_schedule": false,
- "id": "52280ba8-7639-4ed2-b0a7-48af9141ad86",
- "inserted_at": "2025-06-30T15:59:24.023276Z",
- "legacy_id": 394782949,
- "livestream": {
- "channel": "tiltify",
- "type": "twitch"
}, - "name": "My Awesome Campaign",
- "original_goal": {
- "currency": "USD",
- "value": "182.32"
}, - "parent_facts": [
- {
- "id": "9f7dd842-a64d-4495-a422-d31565b963df",
- "name": "Charity",
- "usage_type": "cause"
}, - {
- "id": "9f7dd842-a64d-4495-a422-d31565b963df",
- "name": "Massive Fundraiser",
- "usage_type": "fundraising_event_activation"
}
], - "published_at": "2025-06-30T15:59:24.023306Z",
- "retired_at": null,
- "slug": "my-awesome-campaign",
- "status": "published",
- "supporting_type": "none",
- "team_campaign_id": "85ada071-eb80-4812-ab7c-e9bd5bd7a003",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2025-06-30T15:59:24.023312Z",
- "user": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Professional twitch streamer who likes charity!",
- "id": "a1b05830-ee42-4f17-87e6-0c7775a5559e",
- "legacy_id": 579952411,
- "slug": "username",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "username": "UserName"
}, - "user_id": "05046e9d-79e2-4aa4-acb9-54bd4f66127a"
}
}
campaign_id required | string Campaign ID or legacy ID |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "active": true,
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "48350c3b-28c0-4ecf-9543-577bd7746fc4",
- "inserted_at": "2025-06-30T15:59:24.630801Z",
- "legacy_id": 549854757,
- "name": "Learn a TikTok dance live!",
- "options": [
- {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "adcfbead-e8e1-429f-99c7-a2e63d4b6a43",
- "inserted_at": "2025-06-30T15:59:24.631712Z",
- "legacy_id": 231776936,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2025-06-30T15:59:24.631728Z"
}, - {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "adcfbead-e8e1-429f-99c7-a2e63d4b6a43",
- "inserted_at": "2025-06-30T15:59:24.631712Z",
- "legacy_id": 231776936,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2025-06-30T15:59:24.631728Z"
}, - {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "adcfbead-e8e1-429f-99c7-a2e63d4b6a43",
- "inserted_at": "2025-06-30T15:59:24.631712Z",
- "legacy_id": 231776936,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2025-06-30T15:59:24.631728Z"
}
], - "updated_at": "2025-06-30T15:59:24.712471Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
campaign_id required | string Campaign ID or legacy ID |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "active": true,
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "ends_at": "2025-06-30T15:59:24.759727Z",
- "id": "3e5470d4-50d6-41a0-934d-c4c345ec89e1",
- "inserted_at": "2025-06-30T15:59:24.759766Z",
- "legacy_id": 504014840,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2025-06-30T15:59:24.759784Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Returns a poll by its ID
poll_id required | string Poll ID |
campaign_id required | string Campaign ID |
{- "data": {
- "active": true,
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "48350c3b-28c0-4ecf-9543-577bd7746fc4",
- "inserted_at": "2025-06-30T15:59:24.630801Z",
- "legacy_id": 549854757,
- "name": "Learn a TikTok dance live!",
- "options": [
- {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "adcfbead-e8e1-429f-99c7-a2e63d4b6a43",
- "inserted_at": "2025-06-30T15:59:24.631712Z",
- "legacy_id": 231776936,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2025-06-30T15:59:24.631728Z"
}, - {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "adcfbead-e8e1-429f-99c7-a2e63d4b6a43",
- "inserted_at": "2025-06-30T15:59:24.631712Z",
- "legacy_id": 231776936,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2025-06-30T15:59:24.631728Z"
}, - {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "adcfbead-e8e1-429f-99c7-a2e63d4b6a43",
- "inserted_at": "2025-06-30T15:59:24.631712Z",
- "legacy_id": 231776936,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2025-06-30T15:59:24.631728Z"
}
], - "updated_at": "2025-06-30T15:59:24.712471Z"
}
}
campaign_id required | string Campaign ID or legacy ID |
completed_before | string Example: completed_before=2021-11-02T14:24:55.811924Z Returns only donations that have been completed before the given moment in ISO8601 format |
completed_after | string Example: completed_after=2021-11-02T14:24:55.811924Z Returns only donations that have been completed after the given moment in ISO8601 format |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "campaign_id": "fad4d063-7ad5-4070-8df4-e8e56b737f4c",
- "cause_id": "0653425e-efd8-4ef2-b849-fc4f76868dbf",
- "completed_at": "2025-06-30T15:59:24.202582Z",
- "donation_matches": [
- {
- "active": true,
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "completed_at": "2025-06-30T15:59:24.203941Z",
- "donation_id": "287bf125-b190-48b6-a304-32db1f585ccc",
- "ends_at": "2025-06-30T15:59:24.203938Z",
- "id": "0ea69b8a-4bbc-488a-9b3a-c9704f3d241e",
- "inserted_at": "2025-06-30T15:59:24.203920Z",
- "matched_by": "Big Donor 1",
- "pledged_amount": {
- "currency": "USD",
- "value": "182.32"
}, - "started_at_amount": {
- "currency": "USD",
- "value": "182.32"
}, - "starts_at": "2025-06-30T15:59:24.203934Z",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2025-06-30T15:59:24.203929Z"
}
], - "donor_comment": "Keep up the great work!",
- "donor_name": "Test Name",
- "facts": [
- {
- "id": "9f7dd842-a64d-4495-a422-d31565b963df",
- "name": "Charity",
- "usage_type": "cause"
}, - {
- "id": "9f7dd842-a64d-4495-a422-d31565b963df",
- "name": "Massive Fundraiser",
- "usage_type": "fundraising_event_activation"
}, - {
- "id": "9f7dd842-a64d-4495-a422-d31565b963df",
- "name": "My Campaign",
- "usage_type": "campaign"
}
], - "fundraising_event_id": "40ea787f-72de-484d-ac6d-2a24a7730afa",
- "id": "c14a15b9-29f6-4da6-a42e-1f42ea4091e5",
- "legacy_id": 282633623,
- "poll_id": "456522e9-c307-4018-bd97-3ca05bf6c2e6",
- "poll_option_id": "8309ea7d-9aeb-4dec-9b0c-67fd578d785f",
- "reward_claims": [
- {
- "id": "389912a7-3d2b-43b1-b17d-a18e6bd0e9a0",
- "quantity": 1,
- "reward_id": "4f9eae43-91b6-4aeb-bc01-c85092f77457"
}
], - "reward_id": "fe082716-780e-4e4f-91ce-8f4ad70f3165",
- "sustained": false,
- "target_id": "c467f53d-ea2a-4676-b1ac-56d5d9860c82",
- "team_event_id": "dd32f90d-318f-400f-8e84-f10d7b398dd9"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
campaign_id required | string Campaign ID or legacy ID |
created_before | string Example: created_before=2021-11-02T14:24:55.811924Z Returns only donation matches that have been updated before the given moment in ISO8601 format |
created_after | string Example: created_after=2021-11-02T14:24:55.811924Z Returns only donation matches that have been updated after the given moment in ISO8601 format |
updated_before | string Example: updated_before=2021-11-02T14:24:55.811924Z Returns only donation matches that have been updated before the given moment in ISO8601 format |
updated_after | string Example: updated_after=2021-11-02T14:24:55.811924Z Returns only donation matches that have been updated after the given moment in ISO8601 format |
status | string Example: status=completed Status of the donation match. One of: active, or completed |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "active": true,
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "completed_at": "2025-06-30T15:59:24.203941Z",
- "donation_id": "287bf125-b190-48b6-a304-32db1f585ccc",
- "ends_at": "2025-06-30T15:59:24.203938Z",
- "id": "0ea69b8a-4bbc-488a-9b3a-c9704f3d241e",
- "inserted_at": "2025-06-30T15:59:24.203920Z",
- "matched_by": "Big Donor 1",
- "pledged_amount": {
- "currency": "USD",
- "value": "182.32"
}, - "started_at_amount": {
- "currency": "USD",
- "value": "182.32"
}, - "starts_at": "2025-06-30T15:59:24.203934Z",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2025-06-30T15:59:24.203929Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Returns a campaign by its ID
campaign_id required | string Campaign ID |
{- "data": {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "cause_id": "027a8c83-dc5e-4ec7-88e4-f72502bef8ca",
- "description": "My Awesome weekend campaign.",
- "fundraising_event_id": "42da2ccd-8f98-4f2c-9ce1-ffc7d62a27cd",
- "goal": {
- "currency": "USD",
- "value": "182.32"
}, - "has_schedule": false,
- "id": "52280ba8-7639-4ed2-b0a7-48af9141ad86",
- "inserted_at": "2025-06-30T15:59:24.023276Z",
- "legacy_id": 394782949,
- "livestream": {
- "channel": "tiltify",
- "type": "twitch"
}, - "name": "My Awesome Campaign",
- "original_goal": {
- "currency": "USD",
- "value": "182.32"
}, - "parent_facts": [
- {
- "id": "9f7dd842-a64d-4495-a422-d31565b963df",
- "name": "Charity",
- "usage_type": "cause"
}, - {
- "id": "9f7dd842-a64d-4495-a422-d31565b963df",
- "name": "Massive Fundraiser",
- "usage_type": "fundraising_event_activation"
}
], - "published_at": "2025-06-30T15:59:24.023306Z",
- "retired_at": null,
- "slug": "my-awesome-campaign",
- "status": "published",
- "supporting_type": "none",
- "team_campaign_id": "85ada071-eb80-4812-ab7c-e9bd5bd7a003",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2025-06-30T15:59:24.023312Z",
- "user": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Professional twitch streamer who likes charity!",
- "id": "a1b05830-ee42-4f17-87e6-0c7775a5559e",
- "legacy_id": 579952411,
- "slug": "username",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "username": "UserName"
}, - "user_id": "05046e9d-79e2-4aa4-acb9-54bd4f66127a"
}
}
campaign_id required | string Campaign ID or legacy ID |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "active": true,
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "description": "The streamer will pick a song and sing it poorly",
- "ends_at": "2025-06-30T15:59:24.665330Z",
- "fair_market_value": {
- "currency": "USD",
- "value": "182.32"
}, - "highlighted": true,
- "id": "0228aa52-734b-4430-9928-268a84bd2fe4",
- "image": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "inserted_at": "2025-06-30T15:59:24.665370Z",
- "legacy_id": 7434909,
- "name": "Sing a Song Poorly",
- "quantity": 1000,
- "quantity_remaining": 23,
- "starts_at": "2025-06-30T15:59:24.665387Z",
- "updated_at": "2025-06-30T15:59:24.665390Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
campaign_id required | string Campaign ID or legacy ID |
include_disabled | boolean Example: include_disabled=true Returns disabled milestones. Defaults to false |
created_before | string Example: created_before=2021-11-02T14:24:55.811924Z Returns only milestones that have been updated before the given moment in ISO8601 format |
created_after | string Example: created_after=2021-11-02T14:24:55.811924Z Returns only milestones that have been updated after the given moment in ISO8601 format |
updated_before | string Example: updated_before=2021-11-02T14:24:55.811924Z Returns only milestones that have been updated before the given moment in ISO8601 format |
updated_after | string Example: updated_after=2021-11-02T14:24:55.811924Z Returns only milestones that have been updated after the given moment in ISO8601 format |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "active": true,
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "353adaa7-144a-40b4-9331-63d5a845a161",
- "inserted_at": "2025-06-30T15:59:24.577003Z",
- "legacy_id": 651293918,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2025-06-30T15:59:24.577032Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
campaign_id required | string Campaign ID |
time_type | string Enum: "daily" "weekly" "monthly" "yearly" "ytd" "all" Example: time_type=all The time range to use in leaderboard generation |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "heat": null,
- "id": "424679dd-d536-4256-8ae9-4e0398b40b37",
- "name": "Awesome Team",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
cause_id required | string Cause ID |
time_type | string Enum: "daily" "weekly" "monthly" "yearly" "ytd" "all" Example: time_type=all The time range to use in leaderboard generation |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "heat": null,
- "id": "424679dd-d536-4256-8ae9-4e0398b40b37",
- "name": "Awesome Team",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
cause_id required | string Cause ID |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "can_publish_supporting_at": "2025-06-30T15:59:23.744597Z",
- "cause_id": "7de18999-1ff3-446a-b8de-2d93e5603c98",
- "currency_code": "USD",
- "description": "Let's get **spooooky**!",
- "end_supporting_at": "2025-06-30T15:59:23.744593Z",
- "ends_at": "2025-06-30",
- "goal": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "17ad445b-03a2-4abd-ac51-5568269e3f53",
- "inserted_at": "2025-06-30T15:59:23.744537Z",
- "legacy_id": 742535669,
- "name": "Spooktober 2022",
- "published_at": "2025-06-30T15:59:23.744568Z",
- "retired_at": null,
- "slug": "spooktober-2022",
- "start_supporting_at": "2025-06-30T15:59:23.744588Z",
- "starts_at": "2025-06-30",
- "status": "published",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2025-06-30T15:59:23.744603Z",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
cause_id required | string Cause ID |
time_type | string Enum: "daily" "weekly" "monthly" "yearly" "ytd" "all" Example: time_type=all The time range to use in leaderboard generation |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "heat": null,
- "id": "424679dd-d536-4256-8ae9-4e0398b40b37",
- "name": "Awesome Team",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
cause_id required | string Cause ID |
time_type | string Enum: "daily" "weekly" "monthly" "yearly" "ytd" "all" Example: time_type=all The time range to use in leaderboard generation |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "heat": null,
- "id": "424679dd-d536-4256-8ae9-4e0398b40b37",
- "name": "Awesome Team",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Returns a cause by its ID
cause_id required | string Cause ID |
{- "data": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "contact": {
- "address_line1": "22251 Bahringer Turnpike",
- "address_line2": null,
- "city": "Bright Tree Village",
- "country": "Outer Rim",
- "email": "contact@erf.test",
- "postal_code": "20001",
- "region": "Endor"
}, - "currency_code": "USD",
- "description": "Ewok Rescue Foundation (ERF) works around the forest moon of Endor to promote the most effective Ewok protection. Join us and help us to build a better Endor!",
- "government_id": "12-3456789",
- "id": "34c450ef-935c-4a7a-b909-0d9fe204d069",
- "inserted_at": "2025-06-30T15:59:23.561378Z",
- "legacy_id": 897906660,
- "name": "Ewok Rescue Foundation",
- "short_description": "ERF works in Endor to protect the Ewoks",
- "slug": "ewok-rescue-foundation",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "updated_at": "2025-06-30T15:59:23.561405Z"
}
}
fundraising_event_id required | string Fundraising Event ID |
time_type | string Enum: "daily" "weekly" "monthly" "yearly" "ytd" "all" "custom" Example: time_type=all The time range to use in leaderboard generation |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "heat": null,
- "id": "424679dd-d536-4256-8ae9-4e0398b40b37",
- "name": "Awesome Team",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
fundraising_event_id required | string Fundraising Event ID |
time_type | string Enum: "daily" "weekly" "monthly" "yearly" "ytd" "all" "custom" Example: time_type=all The time range to use in leaderboard generation |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "heat": null,
- "id": "424679dd-d536-4256-8ae9-4e0398b40b37",
- "name": "Awesome Team",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
fundraising_event_id required | string Fundraising Event ID |
time_type | string Enum: "daily" "weekly" "monthly" "yearly" "ytd" "all" "custom" Example: time_type=all The time range to use in leaderboard generation |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "heat": null,
- "id": "424679dd-d536-4256-8ae9-4e0398b40b37",
- "name": "Awesome Team",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
fundraising_event_id required | string Fundraising Event ID |
time_type | string Enum: "daily" "weekly" "monthly" "yearly" "ytd" "all" "custom" Example: time_type=all The time range to use in leaderboard generation |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "heat": null,
- "id": "424679dd-d536-4256-8ae9-4e0398b40b37",
- "name": "Awesome Team",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
fundraising_event_id required | string Fundraising Event ID |
time_type | string Enum: "daily" "weekly" "monthly" "yearly" "ytd" "all" "custom" Example: time_type=all The time range to use in leaderboard generation |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "heat": null,
- "id": "424679dd-d536-4256-8ae9-4e0398b40b37",
- "name": "Awesome Team",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
fundraising_event_id required | string Fundraising Event ID |
time_type | string Enum: "daily" "weekly" "monthly" "yearly" "ytd" "all" "custom" Example: time_type=all The time range to use in leaderboard generation |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "heat": null,
- "id": "424679dd-d536-4256-8ae9-4e0398b40b37",
- "name": "Awesome Team",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Returns supporting campaigns by Fundraising Event ID
fundraising_event_id required | string Fundraising event ID or legacy ID |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "cause_id": "027a8c83-dc5e-4ec7-88e4-f72502bef8ca",
- "description": "My Awesome weekend campaign.",
- "fundraising_event_id": "42da2ccd-8f98-4f2c-9ce1-ffc7d62a27cd",
- "goal": {
- "currency": "USD",
- "value": "182.32"
}, - "has_schedule": false,
- "id": "52280ba8-7639-4ed2-b0a7-48af9141ad86",
- "inserted_at": "2025-06-30T15:59:24.023276Z",
- "legacy_id": 394782949,
- "livestream": {
- "channel": "tiltify",
- "type": "twitch"
}, - "name": "My Awesome Campaign",
- "original_goal": {
- "currency": "USD",
- "value": "182.32"
}, - "parent_facts": [
- {
- "id": "9f7dd842-a64d-4495-a422-d31565b963df",
- "name": "Charity",
- "usage_type": "cause"
}, - {
- "id": "9f7dd842-a64d-4495-a422-d31565b963df",
- "name": "Massive Fundraiser",
- "usage_type": "fundraising_event_activation"
}
], - "published_at": "2025-06-30T15:59:24.023306Z",
- "retired_at": null,
- "slug": "my-awesome-campaign",
- "status": "published",
- "supporting_type": "none",
- "team_campaign_id": "85ada071-eb80-4812-ab7c-e9bd5bd7a003",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2025-06-30T15:59:24.023312Z",
- "user": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Professional twitch streamer who likes charity!",
- "id": "a1b05830-ee42-4f17-87e6-0c7775a5559e",
- "legacy_id": 579952411,
- "slug": "username",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "username": "UserName"
}, - "user_id": "05046e9d-79e2-4aa4-acb9-54bd4f66127a"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Returns a fundraising event by its ID
fundraising_event_id required | string Fundraising Event ID |
{- "data": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "can_publish_supporting_at": "2025-06-30T15:59:23.744597Z",
- "cause_id": "7de18999-1ff3-446a-b8de-2d93e5603c98",
- "currency_code": "USD",
- "description": "Let's get **spooooky**!",
- "end_supporting_at": "2025-06-30T15:59:23.744593Z",
- "ends_at": "2025-06-30",
- "goal": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "17ad445b-03a2-4abd-ac51-5568269e3f53",
- "inserted_at": "2025-06-30T15:59:23.744537Z",
- "legacy_id": 742535669,
- "name": "Spooktober 2022",
- "published_at": "2025-06-30T15:59:23.744568Z",
- "retired_at": null,
- "slug": "spooktober-2022",
- "start_supporting_at": "2025-06-30T15:59:23.744588Z",
- "starts_at": "2025-06-30",
- "status": "published",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2025-06-30T15:59:23.744603Z",
}
}
fundraising_event_id required | string Fundraising Event ID |
time_type | string Enum: "daily" "weekly" "monthly" "yearly" "ytd" "all" "custom" Example: time_type=all The time range to use in leaderboard generation |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "heat": null,
- "id": "424679dd-d536-4256-8ae9-4e0398b40b37",
- "name": "Awesome Team",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
fundraising_event_id required | string FundraisingEvent ID or legacy ID |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "current_value": "44.4",
- "distance_unit": "mile",
- "goal": "1000",
- "id": "a12daef8-9e3e-4745-b1d9-047e7a85a2b0",
- "type": "Running"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
This endpoint will list donations for a given Fundraising Event. Contact support for access to this endpoint.
fundraising_event_id required | string FundraisingEvent ID or legacy ID |
completed_before | string Example: completed_before=2021-11-02T14:24:55.811924Z Returns only donations that have been completed before the given moment in ISO8601 format |
completed_after | string Example: completed_after=2021-11-02T14:24:55.811924Z Returns only donations that have been completed after the given moment in ISO8601 format |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "campaign_id": "fad4d063-7ad5-4070-8df4-e8e56b737f4c",
- "cause_id": "0653425e-efd8-4ef2-b849-fc4f76868dbf",
- "completed_at": "2025-06-30T15:59:24.202582Z",
- "donation_matches": [
- {
- "active": true,
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "completed_at": "2025-06-30T15:59:24.203941Z",
- "donation_id": "287bf125-b190-48b6-a304-32db1f585ccc",
- "ends_at": "2025-06-30T15:59:24.203938Z",
- "id": "0ea69b8a-4bbc-488a-9b3a-c9704f3d241e",
- "inserted_at": "2025-06-30T15:59:24.203920Z",
- "matched_by": "Big Donor 1",
- "pledged_amount": {
- "currency": "USD",
- "value": "182.32"
}, - "started_at_amount": {
- "currency": "USD",
- "value": "182.32"
}, - "starts_at": "2025-06-30T15:59:24.203934Z",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2025-06-30T15:59:24.203929Z"
}
], - "donor_comment": "Keep up the great work!",
- "donor_name": "Test Name",
- "facts": [
- {
- "id": "9f7dd842-a64d-4495-a422-d31565b963df",
- "name": "Charity",
- "usage_type": "cause"
}, - {
- "id": "9f7dd842-a64d-4495-a422-d31565b963df",
- "name": "Massive Fundraiser",
- "usage_type": "fundraising_event_activation"
}, - {
- "id": "9f7dd842-a64d-4495-a422-d31565b963df",
- "name": "My Campaign",
- "usage_type": "campaign"
}
], - "fundraising_event_id": "40ea787f-72de-484d-ac6d-2a24a7730afa",
- "id": "c14a15b9-29f6-4da6-a42e-1f42ea4091e5",
- "legacy_id": 282633623,
- "poll_id": "456522e9-c307-4018-bd97-3ca05bf6c2e6",
- "poll_option_id": "8309ea7d-9aeb-4dec-9b0c-67fd578d785f",
- "reward_claims": [
- {
- "id": "389912a7-3d2b-43b1-b17d-a18e6bd0e9a0",
- "quantity": 1,
- "reward_id": "4f9eae43-91b6-4aeb-bc01-c85092f77457"
}
], - "reward_id": "fe082716-780e-4e4f-91ce-8f4ad70f3165",
- "sustained": false,
- "target_id": "c467f53d-ea2a-4676-b1ac-56d5d9860c82",
- "team_event_id": "dd32f90d-318f-400f-8e84-f10d7b398dd9"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Returns an access and refresh token with a provided client id, secret, and grant type. Tokens expire in 7200
seconds.
client_id required | string Client Id |
client_secret required | string Client Secret |
grant_type required | string Default: "client_credentials" Enum: "client_credentials" "authorization_code" "refresh_token" Grant Type |
code | string Authorization Code; |
refresh_token | string Refresh Token; |
scope | string Default: "public" Value: "public" Scope |
{- "access_token": "ab6a592346444dea97170837e104d8a5ab6a592346444dea97170837e104d8a5",
- "created_at": "2023-01-27T19:32:03Z",
- "expires_in": 7200,
- "refresh_token": "njjjytm3otetmgrjmi00yjawlwe4zgytzjixy2mzm2y3njawcg121231999393a3",
- "scope": "public",
- "token_type": "bearer"
}
Returns a code
through the applications redirect_uri
to be used with the /token
with the authorization_code
grant.
client_id required | string Client Id |
redirect_uri required | string Redirect URI |
response_type required | string Value: "code" Response Type |
scope | string Default: "public" Value: "public" Scope |
personal_campaign_id required | string Campaign ID |
include_disabled | boolean Example: include_disabled=true Returns disabled milestones. Defaults to false |
created_before | string Example: created_before=2021-11-02T14:24:55.811924Z Returns only milestones that have been updated before the given moment in ISO8601 format |
created_after | string Example: created_after=2021-11-02T14:24:55.811924Z Returns only milestones that have been updated after the given moment in ISO8601 format |
updated_before | string Example: updated_before=2021-11-02T14:24:55.811924Z Returns only milestones that have been updated before the given moment in ISO8601 format |
updated_after | string Example: updated_after=2021-11-02T14:24:55.811924Z Returns only milestones that have been updated after the given moment in ISO8601 format |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "active": true,
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "353adaa7-144a-40b4-9331-63d5a845a161",
- "inserted_at": "2025-06-30T15:59:24.577003Z",
- "legacy_id": 651293918,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2025-06-30T15:59:24.577032Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
personal_campaign_id required | string Campaign ID |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "active": true,
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "description": "The streamer will pick a song and sing it poorly",
- "ends_at": "2025-06-30T15:59:24.665330Z",
- "fair_market_value": {
- "currency": "USD",
- "value": "182.32"
}, - "highlighted": true,
- "id": "0228aa52-734b-4430-9928-268a84bd2fe4",
- "image": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "inserted_at": "2025-06-30T15:59:24.665370Z",
- "legacy_id": 7434909,
- "name": "Sing a Song Poorly",
- "quantity": 1000,
- "quantity_remaining": 23,
- "starts_at": "2025-06-30T15:59:24.665387Z",
- "updated_at": "2025-06-30T15:59:24.665390Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Returns a poll by its ID
poll_id required | string Poll ID |
personal_campaign_id required | string Campaign ID |
{- "data": {
- "active": true,
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "48350c3b-28c0-4ecf-9543-577bd7746fc4",
- "inserted_at": "2025-06-30T15:59:24.630801Z",
- "legacy_id": 549854757,
- "name": "Learn a TikTok dance live!",
- "options": [
- {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "adcfbead-e8e1-429f-99c7-a2e63d4b6a43",
- "inserted_at": "2025-06-30T15:59:24.631712Z",
- "legacy_id": 231776936,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2025-06-30T15:59:24.631728Z"
}, - {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "adcfbead-e8e1-429f-99c7-a2e63d4b6a43",
- "inserted_at": "2025-06-30T15:59:24.631712Z",
- "legacy_id": 231776936,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2025-06-30T15:59:24.631728Z"
}, - {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "adcfbead-e8e1-429f-99c7-a2e63d4b6a43",
- "inserted_at": "2025-06-30T15:59:24.631712Z",
- "legacy_id": 231776936,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2025-06-30T15:59:24.631728Z"
}
], - "updated_at": "2025-06-30T15:59:24.712471Z"
}
}
Returns a personal campaign by its ID
personal_campaign_id required | string Personal Campaign ID |
{- "data": {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "My Awesome weekend campaign.",
- "fundraising_for_name": "ME!",
- "fundraising_for_self": true,
- "goal": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "e836f27e-7523-4b6e-b10b-d37b14954467",
- "inserted_at": "2025-06-30T15:59:24.533378Z",
- "name": "My Awesome Campaign",
- "original_goal": {
- "currency": "USD",
- "value": "182.32"
}, - "published_at": "2025-06-30T15:59:24.533392Z",
- "retired_at": null,
- "slug": "my-awesome-campaign",
- "status": "published",
- "supporting_type": "none",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2025-06-30T15:59:24.533396Z",
- "user": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Professional twitch streamer who likes charity!",
- "id": "a1b05830-ee42-4f17-87e6-0c7775a5559e",
- "legacy_id": 579952411,
- "slug": "username",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "username": "UserName"
}, - "user_id": "3c2e1bd2-a6ff-4bab-8a2b-dce8898c5a77"
}
}
personal_campaign_id required | string Personal Campaign ID |
status | string Enum: "published" "retired" Example: status=published Use this parameter to filter campaigns by the given status. |
updated_after | string Example: updated_after=2021-11-02T14:24:55.811924Z Returns only campaigns that have been updated after the given moment in ISO8601 format |
updated_before | string Example: updated_before=2021-11-02T14:24:55.811924Z Returns only campaigns that have been updated before the given moment in ISO8601 format |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "My Awesome weekend campaign.",
- "fundraising_for_name": "ME!",
- "fundraising_for_self": true,
- "goal": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "e836f27e-7523-4b6e-b10b-d37b14954467",
- "inserted_at": "2025-06-30T15:59:24.533378Z",
- "name": "My Awesome Campaign",
- "original_goal": {
- "currency": "USD",
- "value": "182.32"
}, - "published_at": "2025-06-30T15:59:24.533392Z",
- "retired_at": null,
- "slug": "my-awesome-campaign",
- "status": "published",
- "supporting_type": "none",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2025-06-30T15:59:24.533396Z",
- "user": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Professional twitch streamer who likes charity!",
- "id": "a1b05830-ee42-4f17-87e6-0c7775a5559e",
- "legacy_id": 579952411,
- "slug": "username",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "username": "UserName"
}, - "user_id": "3c2e1bd2-a6ff-4bab-8a2b-dce8898c5a77"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
personal_campaign_id required | string Campaign ID |
completed_before | string Example: completed_before=2021-11-02T14:24:55.811924Z Returns only donations that have been completed before the given moment in ISO8601 format |
completed_after | string Example: completed_after=2021-11-02T14:24:55.811924Z Returns only donations that have been completed after the given moment in ISO8601 format |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "completed_at": "2025-06-30T15:59:24.080879Z",
- "donor_comment": "Keep up the great work!",
- "donor_name": "Test Name",
- "gift_matches": [ ],
- "id": "215087e6-ae68-4b9c-8421-3252d1117e70",
- "is_match": false,
- "personal_campaign_id": "2c19274e-12ae-43a7-8f2b-4d71fb358952",
- "poll_id": "f8abc81c-bd19-49a6-94fb-5a0d24371044",
- "poll_option_id": "6a1e8c87-68b4-43e1-a877-bf6f754c4856",
- "reward_claims": [
- {
- "id": "fe07572d-fd61-463b-ae89-371d2820c735",
- "quantity": 1,
- "reward_id": "8a4e685c-4e3a-476e-a544-9097b04ed4f0"
}
], - "target_id": "42887687-380f-466e-b541-d4bf5f4095f9"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
personal_campaign_id required | string Campaign ID |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "description": null,
- "ends_at": "2025-06-30T15:59:22.265718Z",
- "id": "3b974d93-75cc-45c7-a4ea-4b2825570ca9",
- "inserted_at": "2025-06-30T15:59:22.265764Z",
- "legacy_id": 437879901,
- "name": "Holiday Special Livestream",
- "starts_at": "2025-06-30T15:59:22.265783Z",
- "updated_at": "2025-06-30T15:59:22.265788Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
personal_campaign_id required | string Campaign ID |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "active": true,
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "48350c3b-28c0-4ecf-9543-577bd7746fc4",
- "inserted_at": "2025-06-30T15:59:24.630801Z",
- "legacy_id": 549854757,
- "name": "Learn a TikTok dance live!",
- "options": [
- {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "adcfbead-e8e1-429f-99c7-a2e63d4b6a43",
- "inserted_at": "2025-06-30T15:59:24.631712Z",
- "legacy_id": 231776936,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2025-06-30T15:59:24.631728Z"
}, - {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "adcfbead-e8e1-429f-99c7-a2e63d4b6a43",
- "inserted_at": "2025-06-30T15:59:24.631712Z",
- "legacy_id": 231776936,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2025-06-30T15:59:24.631728Z"
}, - {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "adcfbead-e8e1-429f-99c7-a2e63d4b6a43",
- "inserted_at": "2025-06-30T15:59:24.631712Z",
- "legacy_id": 231776936,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2025-06-30T15:59:24.631728Z"
}
], - "updated_at": "2025-06-30T15:59:24.712471Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
personal_campaign_id required | string Campaign ID |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "active": true,
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "ends_at": "2025-06-30T15:59:24.759727Z",
- "id": "3e5470d4-50d6-41a0-934d-c4c345ec89e1",
- "inserted_at": "2025-06-30T15:59:24.759766Z",
- "legacy_id": 504014840,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2025-06-30T15:59:24.759784Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Returns a team by its ID
team_id required | string Team ID |
{- "data": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Awesome group of friends fundraising for charity together.",
- "id": "7e69f5d0-0313-4f73-8178-e353f31a299d",
- "legacy_id": 446416913,
- "name": "Awesome Team",
- "slug": "awesome-team",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
},
}
}
team_id required | string Team ID |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "id": "57d6c9c4-fe96-46b1-864b-49360720dba5",
- "inserted_at": "2025-06-30T15:59:22.194741Z",
- "legacy_id": 288759547,
- "roles": [
- {
- "id": "ef6201cc-7f27-4ad5-ac38-da79ccaef31a",
- "key": "team_super_admin",
- "name": "Team Administrator"
}
], - "updated_at": "2025-06-30T15:59:23.457853Z",
- "user": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Professional twitch streamer who likes charity!",
- "id": "a1b05830-ee42-4f17-87e6-0c7775a5559e",
- "legacy_id": 579952411,
- "slug": "username",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "username": "UserName"
}
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
team_id required | string Team ID |
status | string Enum: "published" "retired" Example: status=published Use this parameter to filter campaigns by the given status. |
supporting_type | string Enum: "invite_only" "none" "private" "public" Example: supporting_type=public Use this parameter to filter campaigns by the given supporting type. |
updated_after | string Example: updated_after=2021-11-02T14:24:55.811924Z Returns only campaigns that have been updated after the given moment in ISO8601 format |
updated_before | string Example: updated_before=2021-11-02T14:24:55.811924Z Returns only campaigns that have been updated before the given moment in ISO8601 format |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "currency_code": "USD",
- "description": "Let's fundraise togehter",
- "goal": {
- "currency": "USD",
- "value": "182.32"
}, - "has_schedule": false,
- "id": "e9043a16-fd36-4a63-a264-ed3028b734c0",
- "inserted_at": "2025-06-30T15:59:24.798086Z",
- "legacy_id": 674747556,
- "livestream": {
- "channel": "tiltify",
- "type": "twitch"
}, - "name": "Our Awesome Team Campaign",
- "original_goal": {
- "currency": "USD",
- "value": "182.32"
}, - "parent_facts": [
- {
- "id": "9f7dd842-a64d-4495-a422-d31565b963df",
- "name": "Charity",
- "usage_type": "cause"
}, - {
- "id": "9f7dd842-a64d-4495-a422-d31565b963df",
- "name": "Massive Fundraiser",
- "usage_type": "fundraising_event_activation"
}
], - "published_at": "2025-06-30T15:59:24.798114Z",
- "retired_at": null,
- "slug": "our-awesome-team-campaign",
- "status": "published",
- "supportable": "none",
- "supporting_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "team": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Awesome group of friends fundraising for charity together.",
- "id": "7e69f5d0-0313-4f73-8178-e353f31a299d",
- "legacy_id": 446416913,
- "name": "Awesome Team",
- "slug": "awesome-team",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
},
}, - "team_id": "7bad6a3e-9c70-49ad-8bdb-59d8813eb950",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2025-06-30T15:59:24.798122Z",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Returns a team by its slug
slug required | string Team slug |
{- "data": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Awesome group of friends fundraising for charity together.",
- "id": "7e69f5d0-0313-4f73-8178-e353f31a299d",
- "legacy_id": 446416913,
- "name": "Awesome Team",
- "slug": "awesome-team",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
},
}
}
team_campaign_id required | string Team Campaign ID or legacy ID |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "active": true,
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "ends_at": "2025-06-30T15:59:24.759727Z",
- "id": "3e5470d4-50d6-41a0-934d-c4c345ec89e1",
- "inserted_at": "2025-06-30T15:59:24.759766Z",
- "legacy_id": 504014840,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2025-06-30T15:59:24.759784Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
team_campaign_id required | string Team Campaign ID or legacy ID |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "active": true,
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "48350c3b-28c0-4ecf-9543-577bd7746fc4",
- "inserted_at": "2025-06-30T15:59:24.630801Z",
- "legacy_id": 549854757,
- "name": "Learn a TikTok dance live!",
- "options": [
- {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "adcfbead-e8e1-429f-99c7-a2e63d4b6a43",
- "inserted_at": "2025-06-30T15:59:24.631712Z",
- "legacy_id": 231776936,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2025-06-30T15:59:24.631728Z"
}, - {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "adcfbead-e8e1-429f-99c7-a2e63d4b6a43",
- "inserted_at": "2025-06-30T15:59:24.631712Z",
- "legacy_id": 231776936,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2025-06-30T15:59:24.631728Z"
}, - {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "adcfbead-e8e1-429f-99c7-a2e63d4b6a43",
- "inserted_at": "2025-06-30T15:59:24.631712Z",
- "legacy_id": 231776936,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2025-06-30T15:59:24.631728Z"
}
], - "updated_at": "2025-06-30T15:59:24.712471Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
team_campaign_id required | string Team Campaign ID or legacy ID |
completed_before | string Example: completed_before=2021-11-02T14:24:55.811924Z Returns only donations that have been completed before the given moment in ISO8601 format |
completed_after | string Example: completed_after=2021-11-02T14:24:55.811924Z Returns only donations that have been completed after the given moment in ISO8601 format |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "campaign_id": "fad4d063-7ad5-4070-8df4-e8e56b737f4c",
- "cause_id": "0653425e-efd8-4ef2-b849-fc4f76868dbf",
- "completed_at": "2025-06-30T15:59:24.202582Z",
- "donation_matches": [
- {
- "active": true,
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "completed_at": "2025-06-30T15:59:24.203941Z",
- "donation_id": "287bf125-b190-48b6-a304-32db1f585ccc",
- "ends_at": "2025-06-30T15:59:24.203938Z",
- "id": "0ea69b8a-4bbc-488a-9b3a-c9704f3d241e",
- "inserted_at": "2025-06-30T15:59:24.203920Z",
- "matched_by": "Big Donor 1",
- "pledged_amount": {
- "currency": "USD",
- "value": "182.32"
}, - "started_at_amount": {
- "currency": "USD",
- "value": "182.32"
}, - "starts_at": "2025-06-30T15:59:24.203934Z",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2025-06-30T15:59:24.203929Z"
}
], - "donor_comment": "Keep up the great work!",
- "donor_name": "Test Name",
- "facts": [
- {
- "id": "9f7dd842-a64d-4495-a422-d31565b963df",
- "name": "Charity",
- "usage_type": "cause"
}, - {
- "id": "9f7dd842-a64d-4495-a422-d31565b963df",
- "name": "Massive Fundraiser",
- "usage_type": "fundraising_event_activation"
}, - {
- "id": "9f7dd842-a64d-4495-a422-d31565b963df",
- "name": "My Campaign",
- "usage_type": "campaign"
}
], - "fundraising_event_id": "40ea787f-72de-484d-ac6d-2a24a7730afa",
- "id": "c14a15b9-29f6-4da6-a42e-1f42ea4091e5",
- "legacy_id": 282633623,
- "poll_id": "456522e9-c307-4018-bd97-3ca05bf6c2e6",
- "poll_option_id": "8309ea7d-9aeb-4dec-9b0c-67fd578d785f",
- "reward_claims": [
- {
- "id": "389912a7-3d2b-43b1-b17d-a18e6bd0e9a0",
- "quantity": 1,
- "reward_id": "4f9eae43-91b6-4aeb-bc01-c85092f77457"
}
], - "reward_id": "fe082716-780e-4e4f-91ce-8f4ad70f3165",
- "sustained": false,
- "target_id": "c467f53d-ea2a-4676-b1ac-56d5d9860c82",
- "team_event_id": "dd32f90d-318f-400f-8e84-f10d7b398dd9"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
team_campaign_id required | string Team Campaign ID or legacy ID |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "description": null,
- "ends_at": "2025-06-30T15:59:22.265718Z",
- "id": "3b974d93-75cc-45c7-a4ea-4b2825570ca9",
- "inserted_at": "2025-06-30T15:59:22.265764Z",
- "legacy_id": 437879901,
- "name": "Holiday Special Livestream",
- "starts_at": "2025-06-30T15:59:22.265783Z",
- "updated_at": "2025-06-30T15:59:22.265788Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Returns a Team Campaign by its ID
team_campaign_id required | string Team Campaign ID |
{- "data": {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "currency_code": "USD",
- "description": "Let's fundraise togehter",
- "goal": {
- "currency": "USD",
- "value": "182.32"
}, - "has_schedule": false,
- "id": "e9043a16-fd36-4a63-a264-ed3028b734c0",
- "inserted_at": "2025-06-30T15:59:24.798086Z",
- "legacy_id": 674747556,
- "livestream": {
- "channel": "tiltify",
- "type": "twitch"
}, - "name": "Our Awesome Team Campaign",
- "original_goal": {
- "currency": "USD",
- "value": "182.32"
}, - "parent_facts": [
- {
- "id": "9f7dd842-a64d-4495-a422-d31565b963df",
- "name": "Charity",
- "usage_type": "cause"
}, - {
- "id": "9f7dd842-a64d-4495-a422-d31565b963df",
- "name": "Massive Fundraiser",
- "usage_type": "fundraising_event_activation"
}
], - "published_at": "2025-06-30T15:59:24.798114Z",
- "retired_at": null,
- "slug": "our-awesome-team-campaign",
- "status": "published",
- "supportable": "none",
- "supporting_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "team": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Awesome group of friends fundraising for charity together.",
- "id": "7e69f5d0-0313-4f73-8178-e353f31a299d",
- "legacy_id": 446416913,
- "name": "Awesome Team",
- "slug": "awesome-team",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
},
}, - "team_id": "7bad6a3e-9c70-49ad-8bdb-59d8813eb950",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2025-06-30T15:59:24.798122Z",
}
}
team_campaign_id required | string Team Campaign ID or legacy ID |
include_disabled | boolean Example: include_disabled=true Returns disabled milestones. Defaults to false |
created_before | string Example: created_before=2021-11-02T14:24:55.811924Z Returns only milestones that have been updated before the given moment in ISO8601 format |
created_after | string Example: created_after=2021-11-02T14:24:55.811924Z Returns only milestones that have been updated after the given moment in ISO8601 format |
updated_before | string Example: updated_before=2021-11-02T14:24:55.811924Z Returns only milestones that have been updated before the given moment in ISO8601 format |
updated_after | string Example: updated_after=2021-11-02T14:24:55.811924Z Returns only milestones that have been updated after the given moment in ISO8601 format |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "active": true,
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "353adaa7-144a-40b4-9331-63d5a845a161",
- "inserted_at": "2025-06-30T15:59:24.577003Z",
- "legacy_id": 651293918,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2025-06-30T15:59:24.577032Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
team_campaign_id required | string Team Event ID |
time_type | string Enum: "daily" "weekly" "monthly" "yearly" "ytd" "all" Example: time_type=all The time range to use in leaderboard generation |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "heat": null,
- "id": "424679dd-d536-4256-8ae9-4e0398b40b37",
- "name": "Awesome Team",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
team_campaign_id required | string TeamCampaign ID or legacy ID |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "current_value": "44.4",
- "distance_unit": "mile",
- "goal": "1000",
- "id": "a12daef8-9e3e-4745-b1d9-047e7a85a2b0",
- "type": "Running"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Returns a poll by its ID
poll_id required | string Poll ID |
team_campaign_id required | string Team Campaign ID or legacy ID |
{- "data": {
- "active": true,
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "48350c3b-28c0-4ecf-9543-577bd7746fc4",
- "inserted_at": "2025-06-30T15:59:24.630801Z",
- "legacy_id": 549854757,
- "name": "Learn a TikTok dance live!",
- "options": [
- {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "adcfbead-e8e1-429f-99c7-a2e63d4b6a43",
- "inserted_at": "2025-06-30T15:59:24.631712Z",
- "legacy_id": 231776936,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2025-06-30T15:59:24.631728Z"
}, - {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "adcfbead-e8e1-429f-99c7-a2e63d4b6a43",
- "inserted_at": "2025-06-30T15:59:24.631712Z",
- "legacy_id": 231776936,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2025-06-30T15:59:24.631728Z"
}, - {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "id": "adcfbead-e8e1-429f-99c7-a2e63d4b6a43",
- "inserted_at": "2025-06-30T15:59:24.631712Z",
- "legacy_id": 231776936,
- "name": "Learn a TikTok dance live!",
- "updated_at": "2025-06-30T15:59:24.631728Z"
}
], - "updated_at": "2025-06-30T15:59:24.712471Z"
}
}
team_campaign_id required | string Team Campaign ID or legacy ID |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "active": true,
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "description": "The streamer will pick a song and sing it poorly",
- "ends_at": "2025-06-30T15:59:24.665330Z",
- "fair_market_value": {
- "currency": "USD",
- "value": "182.32"
}, - "highlighted": true,
- "id": "0228aa52-734b-4430-9928-268a84bd2fe4",
- "image": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "inserted_at": "2025-06-30T15:59:24.665370Z",
- "legacy_id": 7434909,
- "name": "Sing a Song Poorly",
- "quantity": 1000,
- "quantity_remaining": 23,
- "starts_at": "2025-06-30T15:59:24.665387Z",
- "updated_at": "2025-06-30T15:59:24.665390Z"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
team_campaign_id required | string Team Event ID |
time_type | string Enum: "daily" "weekly" "monthly" "yearly" "ytd" "all" Example: time_type=all The time range to use in leaderboard generation |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "amount": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "heat": null,
- "id": "424679dd-d536-4256-8ae9-4e0398b40b37",
- "name": "Awesome Team",
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
team_campaign_id required | string Team Campaign ID |
status | string Enum: "published" "retired" Example: status=published Use this parameter to filter campaigns by the given status. |
updated_after | string Example: updated_after=2021-11-02T14:24:55.811924Z Returns only campaigns that have been updated after the given moment in ISO8601 format |
updated_before | string Example: updated_before=2021-11-02T14:24:55.811924Z Returns only campaigns that have been updated before the given moment in ISO8601 format |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "cause_id": "027a8c83-dc5e-4ec7-88e4-f72502bef8ca",
- "description": "My Awesome weekend campaign.",
- "fundraising_event_id": "42da2ccd-8f98-4f2c-9ce1-ffc7d62a27cd",
- "goal": {
- "currency": "USD",
- "value": "182.32"
}, - "has_schedule": false,
- "id": "52280ba8-7639-4ed2-b0a7-48af9141ad86",
- "inserted_at": "2025-06-30T15:59:24.023276Z",
- "legacy_id": 394782949,
- "livestream": {
- "channel": "tiltify",
- "type": "twitch"
}, - "name": "My Awesome Campaign",
- "original_goal": {
- "currency": "USD",
- "value": "182.32"
}, - "parent_facts": [
- {
- "id": "9f7dd842-a64d-4495-a422-d31565b963df",
- "name": "Charity",
- "usage_type": "cause"
}, - {
- "id": "9f7dd842-a64d-4495-a422-d31565b963df",
- "name": "Massive Fundraiser",
- "usage_type": "fundraising_event_activation"
}
], - "published_at": "2025-06-30T15:59:24.023306Z",
- "retired_at": null,
- "slug": "my-awesome-campaign",
- "status": "published",
- "supporting_type": "none",
- "team_campaign_id": "85ada071-eb80-4812-ab7c-e9bd5bd7a003",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2025-06-30T15:59:24.023312Z",
- "user": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Professional twitch streamer who likes charity!",
- "id": "a1b05830-ee42-4f17-87e6-0c7775a5559e",
- "legacy_id": 579952411,
- "slug": "username",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "username": "UserName"
}, - "user_id": "05046e9d-79e2-4aa4-acb9-54bd4f66127a"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Returns a Team Campaign by its team slug and campaign slug
team_slug required | string Team Slug |
team_campaign_slug required | string Campaign Slug |
{- "data": {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "currency_code": "USD",
- "description": "Let's fundraise togehter",
- "goal": {
- "currency": "USD",
- "value": "182.32"
}, - "has_schedule": false,
- "id": "e9043a16-fd36-4a63-a264-ed3028b734c0",
- "inserted_at": "2025-06-30T15:59:24.798086Z",
- "legacy_id": 674747556,
- "livestream": {
- "channel": "tiltify",
- "type": "twitch"
}, - "name": "Our Awesome Team Campaign",
- "original_goal": {
- "currency": "USD",
- "value": "182.32"
}, - "parent_facts": [
- {
- "id": "9f7dd842-a64d-4495-a422-d31565b963df",
- "name": "Charity",
- "usage_type": "cause"
}, - {
- "id": "9f7dd842-a64d-4495-a422-d31565b963df",
- "name": "Massive Fundraiser",
- "usage_type": "fundraising_event_activation"
}
], - "published_at": "2025-06-30T15:59:24.798114Z",
- "retired_at": null,
- "slug": "our-awesome-team-campaign",
- "status": "published",
- "supportable": "none",
- "supporting_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "team": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Awesome group of friends fundraising for charity together.",
- "id": "7e69f5d0-0313-4f73-8178-e353f31a299d",
- "legacy_id": 446416913,
- "name": "Awesome Team",
- "slug": "awesome-team",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
},
}, - "team_id": "7bad6a3e-9c70-49ad-8bdb-59d8813eb950",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2025-06-30T15:59:24.798122Z",
}
}
user_id required | string User ID |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "cause_id": "027a8c83-dc5e-4ec7-88e4-f72502bef8ca",
- "description": "My Awesome weekend campaign.",
- "fundraising_event_id": "42da2ccd-8f98-4f2c-9ce1-ffc7d62a27cd",
- "goal": {
- "currency": "USD",
- "value": "182.32"
}, - "has_schedule": false,
- "id": "52280ba8-7639-4ed2-b0a7-48af9141ad86",
- "inserted_at": "2025-06-30T15:59:24.023276Z",
- "legacy_id": 394782949,
- "livestream": {
- "channel": "tiltify",
- "type": "twitch"
}, - "name": "My Awesome Campaign",
- "original_goal": {
- "currency": "USD",
- "value": "182.32"
}, - "parent_facts": [
- {
- "id": "9f7dd842-a64d-4495-a422-d31565b963df",
- "name": "Charity",
- "usage_type": "cause"
}, - {
- "id": "9f7dd842-a64d-4495-a422-d31565b963df",
- "name": "Massive Fundraiser",
- "usage_type": "fundraising_event_activation"
}
], - "published_at": "2025-06-30T15:59:24.023306Z",
- "retired_at": null,
- "slug": "my-awesome-campaign",
- "status": "published",
- "supporting_type": "none",
- "team_campaign_id": "85ada071-eb80-4812-ab7c-e9bd5bd7a003",
- "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "updated_at": "2025-06-30T15:59:24.023312Z",
- "user": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Professional twitch streamer who likes charity!",
- "id": "a1b05830-ee42-4f17-87e6-0c7775a5559e",
- "legacy_id": 579952411,
- "slug": "username",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "username": "UserName"
}, - "user_id": "05046e9d-79e2-4aa4-acb9-54bd4f66127a"
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Returns a user for a given oauth access token
{- "data": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Professional twitch streamer who likes charity!",
- "id": "a1b05830-ee42-4f17-87e6-0c7775a5559e",
- "legacy_id": 579952411,
- "slug": "username",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "username": "UserName"
}
}
user_id required | string User ID |
role | string Example: role=administrator Returns only teams where a user has a specific role |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Awesome group of friends fundraising for charity together.",
- "id": "7e69f5d0-0313-4f73-8178-e353f31a299d",
- "legacy_id": 446416913,
- "name": "Awesome Team",
- "slug": "awesome-team",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
},
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}
Returns a user by its slug
slug required | string User slug |
{- "data": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Professional twitch streamer who likes charity!",
- "id": "a1b05830-ee42-4f17-87e6-0c7775a5559e",
- "legacy_id": 579952411,
- "slug": "username",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "username": "UserName"
}
}
Returns a user by its ID
user_id required | string User ID |
{- "data": {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Professional twitch streamer who likes charity!",
- "id": "a1b05830-ee42-4f17-87e6-0c7775a5559e",
- "legacy_id": 579952411,
- "slug": "username",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
}, - "username": "UserName"
}
}
user_id required | string User ID |
status | string Enum: "published" "retired" Example: status=published Use this parameter to filter campaigns by the given status. |
supporting_type | string Enum: "invite_only" "none" "private" "public" Example: supporting_type=public Use this parameter to filter campaigns by the given supporting type. |
updated_after | string Example: updated_after=2021-11-02T14:24:55.811924Z Returns only campaigns that have been updated after the given moment in ISO8601 format |
updated_before | string Example: updated_before=2021-11-02T14:24:55.811924Z Returns only campaigns that have been updated before the given moment in ISO8601 format |
after | string Returns records after the given cursor |
before | string Returns records before the given cursor |
limit | integer [ 1 .. 100 ] Default: 10 |
{- "data": [
- {
- "avatar": {
- "alt": "Short image description used as alternative text.",
- "height": 200,
- "width": 200
}, - "description": "Awesome group of friends fundraising for charity together.",
- "id": "7e69f5d0-0313-4f73-8178-e353f31a299d",
- "legacy_id": 446416913,
- "name": "Awesome Team",
- "slug": "awesome-team",
- "social": {
- "facebook": "tiltify",
- "instagram": "tiltify",
- "snapchat": "tiltify",
- "tiktok": "tilitfy",
- "twitch": "tilitfy",
- "twitter": "tiltify",
- "youtube": "UCWcPgWbuWuJX5rHWm6Kb4Vw"
}, - "total_amount_raised": {
- "currency": "USD",
- "value": "182.32"
},
}
], - "metadata": {
- "after": "bGlnaHQgwd==",
- "before": null,
- "limit": 10
}
}