> ## 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.

# /indiegogo/campaigns

> Get Indiegogo crowdfunding campaign details by slug or URL

**Price:** 5 credits

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



## OpenAPI

````yaml /openapi/company-startup-intel.json post /api/indiegogo/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/indiegogo/campaigns:
    post:
      tags:
        - /indiegogo
      summary: /indiegogo/campaigns
      description: |-
        Get Indiegogo crowdfunding campaign details by slug or URL

        **Price:** 5 credits

        **⚠️ Common errors:** 412: Campaign not found
      operationId: __api_indiegogo_campaigns_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IndiegogoCampaignPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IndiegogoCampaign'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    IndiegogoCampaignPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        campaign:
          type: string
          minLength: 1
      type: object
      required:
        - campaign
    IndiegogoCampaign:
      properties:
        '@type':
          type: string
          default: IndiegogoCampaign
        id:
          type: integer
        name:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        tagline:
          anyOf:
            - type: string
            - type: 'null'
        story:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        currency_symbol:
          anyOf:
            - type: string
            - type: 'null'
        goal:
          anyOf:
            - type: number
            - type: 'null'
        funds_raised:
          anyOf:
            - type: number
            - type: 'null'
        funds_raised_total:
          anyOf:
            - type: number
            - type: 'null'
        percent_funded:
          anyOf:
            - type: number
            - type: 'null'
        backer_count:
          anyOf:
            - type: integer
            - type: 'null'
        total_backer_count:
          anyOf:
            - type: integer
            - type: 'null'
        phase:
          anyOf:
            - type: string
            - type: 'null'
        campaign_outcome:
          anyOf:
            - type: string
            - type: 'null'
        campaign_start_at:
          anyOf:
            - type: integer
            - type: 'null'
        campaign_end_at:
          anyOf:
            - type: integer
            - type: 'null'
        funded_at:
          anyOf:
            - type: integer
            - type: 'null'
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        campaign_day:
          anyOf:
            - type: integer
            - type: 'null'
        perk_count:
          anyOf:
            - type: integer
            - type: 'null'
        tags:
          items:
            $ref: '#/components/schemas/IndiegogoTag'
          type: array
          default: []
        game_properties:
          anyOf:
            - $ref: '#/components/schemas/IndiegogoGameProperties'
            - type: 'null'
        creator:
          anyOf:
            - $ref: '#/components/schemas/IndiegogoCreator'
            - type: 'null'
        perks:
          items:
            $ref: '#/components/schemas/IndiegogoPerk'
          type: array
          default: []
        stretch_goals:
          items:
            $ref: '#/components/schemas/IndiegogoStretchGoal'
          type: array
          default: []
      type: object
      required:
        - id
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    IndiegogoTag:
      properties:
        '@type':
          type: string
          default: IndiegogoTag
        id:
          anyOf:
            - type: integer
            - type: 'null'
        name:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    IndiegogoGameProperties:
      properties:
        '@type':
          type: string
          default: IndiegogoGameProperties
        min_age:
          anyOf:
            - type: integer
            - type: 'null'
        min_players:
          anyOf:
            - type: integer
            - type: 'null'
        max_players:
          anyOf:
            - type: integer
            - type: 'null'
        play_time:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    IndiegogoCreator:
      properties:
        '@type':
          type: string
          default: IndiegogoCreator
        id:
          anyOf:
            - type: integer
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
        bio:
          anyOf:
            - type: string
            - type: 'null'
        location:
          anyOf:
            - type: string
            - type: 'null'
        legal_entity_name:
          anyOf:
            - type: string
            - type: 'null'
        legal_entity_type:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    IndiegogoPerk:
      properties:
        '@type':
          type: string
          default: IndiegogoPerk
        id:
          anyOf:
            - type: integer
            - type: 'null'
        name:
          type: string
        price:
          anyOf:
            - type: number
            - type: 'null'
        retail_price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        is_discounted:
          anyOf:
            - type: boolean
            - type: 'null'
        is_digital:
          anyOf:
            - type: boolean
            - type: 'null'
        is_featured:
          anyOf:
            - type: boolean
            - type: 'null'
        is_most_popular:
          anyOf:
            - type: boolean
            - type: 'null'
        has_limited_stock:
          anyOf:
            - type: boolean
            - type: 'null'
        remaining_stock:
          anyOf:
            - type: integer
            - type: 'null'
        claimed_count:
          anyOf:
            - type: integer
            - type: 'null'
        estimated_delivery_at:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    IndiegogoStretchGoal:
      properties:
        '@type':
          type: string
          default: IndiegogoStretchGoal
        id:
          anyOf:
            - type: integer
            - type: 'null'
        name:
          type: string
        abstract:
          anyOf:
            - type: string
            - type: 'null'
        target_value:
          anyOf:
            - type: number
            - type: 'null'
        target_type:
          anyOf:
            - type: string
            - type: 'null'
        progress:
          anyOf:
            - type: number
            - type: 'null'
        is_unlocked:
          anyOf:
            - type: boolean
            - type: 'null'
        is_featured:
          anyOf:
            - type: boolean
            - type: 'null'
        unlocked_at:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    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

````