Indiegogo Public API

Read-only, unauthenticated endpoints for retrieving creators and active crowdfunding projects. Results are cached for a short duration.

OpenAPI Specification

indiegogo-public-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Indiegogo Public API
  version: '1.0'
  description: >-
    The Indiegogo Public API exposes read-only, unauthenticated endpoints for
    retrieving creators and active crowdfunding projects from the Indiegogo
    platform. Responses are cached for a short duration. This specification was
    harvested by the API Evangelist enrichment pipeline directly from the live
    endpoints at https://www.indiegogo.com/api/public and the published
    documentation at https://help.indiegogo.com/article/616-indiegogo-public-api;
    schemas reflect real observed responses.
  contact:
    name: Indiegogo Developer Resources
    url: https://help.indiegogo.com/category/617-developer-resources
  termsOfService: https://www.indiegogo.com/about/terms
servers:
  - url: https://www.indiegogo.com
    description: Production
paths:
  /api/public/creators/getCreator:
    get:
      operationId: getCreator
      summary: Get a creator by URL name
      description: Retrieves a creator by their unique URL name.
      tags:
        - Creators
      parameters:
        - name: urlName
          in: query
          required: true
          description: The unique URL name of the creator (e.g. defne-mustecaplioglu).
          schema:
            type: string
      responses:
        '200':
          description: Creator found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Creator'
              example:
                creatorPageUrl: https://www.indiegogo.com/creators/defne-mustecaplioglu
                description: null
                name: Defne Mustecaplioglu
                thumbImageUrl: https://cdn.images.indiegogo.com/smallthumb/noimage.jpg
                urlName: defne-mustecaplioglu
        '400':
          description: The urlName parameter was not provided or was invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                success: false
                message: URL name was not provided.
  /api/public/projects/getActiveCrowdfundingProjects:
    get:
      operationId: getActiveCrowdfundingProjects
      summary: List active crowdfunding projects
      description: >-
        Retrieves a list of active crowdfunding projects, ordered by campaign
        start date. Results are cached for a short duration.
      tags:
        - Projects
      responses:
        '200':
          description: An array of active crowdfunding projects.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Project'
  /api/public/projects/getCrowdfundingProject:
    get:
      operationId: getCrowdfundingProject
      summary: Get a crowdfunding project by URL name
      description: Retrieves a single crowdfunding project by its unique URL name.
      tags:
        - Projects
      parameters:
        - name: urlName
          in: query
          required: true
          description: The unique URL name of the project (e.g. olive--lemon).
          schema:
            type: string
      responses:
        '200':
          description: Project found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Project'
        '400':
          description: The urlName parameter was not provided or was invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Creator:
      type: object
      description: A campaign creator on Indiegogo.
      properties:
        name:
          type: string
        urlName:
          type: string
        description:
          type: [string, 'null']
        creatorPageUrl:
          type: string
          format: uri
        thumbImageUrl:
          type: string
          format: uri
    Project:
      type: object
      description: A crowdfunding project (campaign) on Indiegogo.
      properties:
        projectName:
          type: string
        projectUrlName:
          type: string
        shortDescription:
          type: string
        projectType:
          type: integer
          description: Numeric project type code.
        projectHomeUrl:
          type: string
          format: uri
        projectImageUrl:
          type: string
          format: uri
        creatorName:
          type: string
        creatorUrlName:
          type: string
        campaignGoal:
          type: number
        fundsGathered:
          type: number
        currencyShortName:
          type: string
          description: ISO currency code (e.g. USD).
        campaignStartDate:
          type: string
          format: date-time
        campaignEndDate:
          type: string
          format: date-time
        backerCount:
          type: integer
        rewardCount:
          type: integer
        commentCount:
          type: integer
        updateCount:
          type: integer
    Error:
      type: object
      description: Error envelope returned on a 400 response.
      properties:
        success:
          type: boolean
          example: false
        message:
          type: string
      required:
        - success
        - message