Skip to main content
GET
https://api.vomo.org/v1
/
campaigns
/
{id}
Get Campaign Details
curl --request GET \
  --url https://api.vomo.org/v1/campaigns/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "type": "campaign",
    "campaign_id": "91",
    "campaign_name": "Fall Hunger Relief Drive",
    "description": "A coordinated effort to stock local food banks before winter.",
    "url": "https://app.vomo.org/initiative/fall-hunger-relief-drive",
    "organization": "Riverside Hope Foundation",
    "organization_slug": "riverside-hope",
    "organization_id": 50,
    "author_id": 7903,
    "logo_url": null,
    "created_at": "2025-11-01T09:00:00+00:00",
    "updated_at": "2025-11-05T14:00:00+00:00",
    "projects": [
      {
        "type": "project",
        "id": "4001",
        "project_name": "Saturday Pantry Pack",
        "description": "Pack weekend food bags for students at risk of hunger.",
        "details": "Wear closed-toe shoes. Bring a water bottle.",
        "url": "https://app.vomo.org/opportunity/saturday-pantry-pack",
        "organization_id": 50,
        "organization": "Riverside Hope Foundation",
        "organization_slug": "riverside-hope",
        "author_id": 7903,
        "owners": [
          {
            "id": 7903,
            "is_primary_owner": true,
            "send_notifications": true
          }
        ],
        "address": {
          "lat": "33.214561",
          "lng": "-96.614456",
          "country": "United States",
          "locality": "McKinney",
          "timezone": "America/Chicago",
          "postal_code": "75069",
          "country_short": "US",
          "locality_short": "McKinney",
          "formatted_address": "610 Elm St, McKinney, TX 75069, USA",
          "postal_code_short": "75069",
          "administrative_area_level_1": "Texas",
          "administrative_area_level_1_short": "TX"
        },
        "anytime": 0,
        "anywhere": 0,
        "draft": false,
        "created_at": "2025-11-01T09:00:00+00:00",
        "updated_at": "2025-11-05T14:22:00+00:00",
        "published_at": "2025-11-01T09:00:00+00:00",
        "campaigns": [
          {
            "type": "campaign",
            "id": "91",
            "campaign_name": "Fall Hunger Relief Drive",
            "description": "A coordinated effort to stock local food banks before winter.",
            "url": "https://app.vomo.org/initiative/fall-hunger-relief-drive",
            "organization": "Riverside Hope Foundation",
            "organization_slug": "riverside-hope",
            "organization_id": 50,
            "author_id": 7903,
            "logo_url": null,
            "created_at": "2025-11-01T09:00:00+00:00",
            "updated_at": "2025-11-05T14:00:00+00:00"
          }
        ],
        "certificates": [],
        "form_completions": [],
        "next_date": {
          "type": "project_date",
          "id": 40001,
          "starts_at": "2025-11-15T09:00:00+00:00",
          "ends_at": "2025-11-15T12:00:00+00:00",
          "participant_count": 8
        },
        "images": [
          "https://vomo-cdn.com/media/2025/11/pantry-pack-l.jpg"
        ],
        "point_person": {
          "name": "Priya Sharma",
          "phone": "(555) 012-0103",
          "email": "priya.sharma@example.org"
        },
        "allow_guests": true,
        "age_limit": 0,
        "volunteer_question": null,
        "participant_approval_required": false,
        "background_check_required": false,
        "show_volunteer_counter": false,
        "volunteer_counter_threshold": 0,
        "privacy": "PUBLIC",
        "all_dates": [
          {
            "type": "project_date",
            "id": 40001,
            "starts_at": "2025-11-15T09:00:00+00:00",
            "ends_at": "2025-11-15T12:00:00+00:00",
            "participant_count": 8
          }
        ]
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer
required

The unique VOMO identifier for the campaign to retrieve.

Response

Returns the full campaign record, including all associated projects and their serving dates.

data
object

A VOMO Campaign with full project details

Last modified on June 5, 2026