For the complete documentation index, see llms.txt. This page is also available as Markdown.

List all sites

List all sites

This endpoint is used to retrieve a list of all sites in your organization.

Endpoint Description:

  • Endpoint: GET /api/sites/

  • Base URL: https://api.vomevolunteer.com

Query Parameters:

  • name (string): Case-insensitive "contains" filter on the site name.

  • page (integer): Page number (default 1).

  • page_size (integer): Items per page (default 25, max 200).

  • limit (integer): Alias for page_size.

Example Request:

GET https://api.vomevolunteer.com/api/sites/

Authorization:

Requests to this endpoint must include an API-KEY in the header for authentication.

headers = {
    "API-KEY": "your_unique_api_key_here"
}
response = requests.get("https://api.vomevolunteer.com/api/sites/", headers=headers)

Response Structure:

Last updated