> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /gofundme/campaigns

> Get GoFundMe campaign (fundraiser) details by slug or URL

**Price:** 20 credits

**⚠️ Common errors:** 412: Campaign not found



## OpenAPI

````yaml /openapi/company-startup-intel.json post /api/gofundme/campaigns
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/gofundme/campaigns:
    post:
      tags:
        - /gofundme
      summary: /gofundme/campaigns
      description: |-
        Get GoFundMe campaign (fundraiser) details by slug or URL

        **Price:** 20 credits

        **⚠️ Common errors:** 412: Campaign not found
      operationId: __api_gofundme_campaigns_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GofundmeCampaignPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GofundmeCampaign'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GofundmeCampaignPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        campaign:
          type: string
          minLength: 1
      type: object
      required:
        - campaign
    GofundmeCampaign:
      properties:
        '@type':
          type: string
          default: GofundmeCampaign
        id:
          type: string
        alias:
          type: string
        url:
          type: string
        campaign_title:
          type: string
        story_summary:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        youtube_url:
          anyOf:
            - type: string
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        goal_amount:
          anyOf:
            - type: number
            - type: 'null'
        user_defined_goal_amount:
          anyOf:
            - type: number
            - type: 'null'
        current_amount:
          anyOf:
            - type: number
            - type: 'null'
        donation_count:
          anyOf:
            - type: integer
            - type: 'null'
        heart_count:
          anyOf:
            - type: integer
            - type: 'null'
        comment_count:
          anyOf:
            - type: integer
            - type: 'null'
        share_count:
          anyOf:
            - type: integer
            - type: 'null'
        update_count:
          anyOf:
            - type: integer
            - type: 'null'
        category_id:
          anyOf:
            - type: integer
            - type: 'null'
        project_type:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        is_charity:
          anyOf:
            - type: boolean
            - type: 'null'
        is_personal_charity:
          anyOf:
            - type: boolean
            - type: 'null'
        comments_enabled:
          anyOf:
            - type: boolean
            - type: 'null'
        donations_enabled:
          anyOf:
            - type: boolean
            - type: 'null'
        suggested_donation_amount:
          anyOf:
            - type: number
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        location:
          anyOf:
            - $ref: '#/components/schemas/GofundmeLocation'
            - type: 'null'
        organizer:
          anyOf:
            - $ref: '#/components/schemas/GofundmeUser'
            - type: 'null'
        beneficiary:
          anyOf:
            - $ref: '#/components/schemas/GofundmeUser'
            - type: 'null'
        charity:
          anyOf:
            - $ref: '#/components/schemas/GofundmeCharity'
            - type: 'null'
        donation_configuration:
          anyOf:
            - $ref: '#/components/schemas/GofundmeDonationConfiguration'
            - type: 'null'
        team:
          anyOf:
            - $ref: '#/components/schemas/GofundmeTeam'
            - type: 'null'
        team_members:
          items:
            $ref: '#/components/schemas/GofundmeTeamMember'
          type: array
          default: []
        goal_log:
          items:
            $ref: '#/components/schemas/GofundmeGoal'
          type: array
          default: []
      type: object
      required:
        - id
        - alias
        - url
        - campaign_title
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    GofundmeLocation:
      properties:
        '@type':
          type: string
          default: GofundmeLocation
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    GofundmeUser:
      properties:
        '@type':
          type: string
          default: GofundmeUser
        id:
          anyOf:
            - type: string
            - type: 'null'
        first_name:
          anyOf:
            - type: string
            - type: 'null'
        last_name:
          anyOf:
            - type: string
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    GofundmeCharity:
      properties:
        '@type':
          type: string
          default: GofundmeCharity
        id:
          anyOf:
            - type: string
            - type: 'null'
        npo_id:
          anyOf:
            - type: string
            - type: 'null'
        ein:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        verified_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    GofundmeDonationConfiguration:
      properties:
        '@type':
          type: string
          default: GofundmeDonationConfiguration
        payment_methods:
          items:
            type: string
          type: array
          default: []
        payment_processor:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    GofundmeTeam:
      properties:
        '@type':
          type: string
          default: GofundmeTeam
        name:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    GofundmeTeamMember:
      properties:
        '@type':
          type: string
          default: GofundmeTeamMember
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        first_name:
          anyOf:
            - type: string
            - type: 'null'
        last_name:
          anyOf:
            - type: string
            - type: 'null'
        role:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        amount_raised:
          anyOf:
            - type: number
            - type: 'null'
        donation_count:
          anyOf:
            - type: integer
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    GofundmeGoal:
      properties:
        '@type':
          type: string
          default: GofundmeGoal
        amount:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        source:
          anyOf:
            - type: string
            - type: 'null'
        changed_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````