API Navigation

API Home Exit API
GiveWheel Logo API

Welcome to the GiveWheel API. This API enables charities, companies, and individuals to integrate with the GiveWheel platform for fundraising, donations, events, and more.

Swagger UI ReDoc

API Guides by Use Case

For Users

Access your personal fundraising data, manage your donations, and update your profile.

Authentication

Login with your username and password to obtain a token:

POST /api/auth/login/
Content-Type: application/json

{
  "username": "[email protected]",
  "password": "yourpassword"
}

Use the returned token in the Authorization header for subsequent requests:

Authorization: Bearer <your_token>

Key Endpoints

  • GET /api/me/fundraisings/ - List your fundraising pages
  • GET /api/me/info/ - Get your user profile

Example: Get My Fundraisings

GET /api/me/fundraisings/
Authorization: Bearer <your_token>

Example: Get My Info

GET /api/me/info/
Authorization: Bearer <your_token>

Getting Started

Pagination & Filtering

Error Handling

More Information