Indiegogo Creators API

The Creators API from Indiegogo — 1 operation(s) for creators.

Operations 1

GET /api/public/creators/getCreator Get a creator by URL name #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/indiegogo-creators-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

indiegogo-creators-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Indiegogo Public Creators 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
tags:
- name: Creators
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.
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
    Error:
      type: object
      description: Error envelope returned on a 400 response.
      properties:
        success:
          type: boolean
          example: false
        message:
          type: string
      required:
      - success
      - message