Jebbit Launch Links API

The Launch Links API from Jebbit — 1 operation(s) for launch links.

Operations 1

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/jebbit-launch-links-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

jebbit-launch-links-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Jebbit Launch Links API
  description: '# Introduction

    Use our Jebbit API to automate tasks relating to your Jebbit Businesses, Campaigns, Product Feed, Launch Links, and Integrations.'
  version: v1
  x-logo:
    url: https://jebbit-public-api-docs.s3.amazonaws.com/images/logo.png
    backgroundColor: '#FFFFFF'
    altText: Jebbit
servers:
- url: https://api2.jebbit.com/
tags:
- name: Launch Links
paths:
  /api/v1/campaigns/{campaign_id}/launch_links:
    get:
      summary: Lists Launch Links for a Campaign
      tags:
      - Launch Links
      security:
      - JWT: []
      parameters:
      - name: campaign_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful
          content:
            application/vnd.api+json:
              examples:
                example_0:
                  value:
                    data:
                    - id: abC1234
                      type: launch_links
                      attributes:
                        created_at: '2021-01-17T19:37:47.151Z'
                        custom_param_value: JC=Product+Quiz+LP
                        enabled: 'true'
                        label: Product Quiz LP
                        link_group: Owned Web
                        link_parameter: L=Owned+Web
                        include_uid_param: 'false'
                        complete_live_link: http://localhost:3001/bce4291?L=Owned+Web&JC=Product+Quiz+LP
                    - id: def6789
                      type: launch_links
                      attributes:
                        created_at: '2020-12-29T18:58:35.791Z'
                        custom_param_value: 'null'
                        enabled: 'true'
                        label: Linkedin
                        link_group: Linkedin
                        link_parameter: L=Linkedin
                        include_uid_param: 'false'
                        complete_live_link: http://localhost:3001/bce4291?L=Linkedin
              schema:
                $ref: '#/components/schemas/launch_links'
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              examples:
                example_0:
                  value:
                    errors:
                    - status: 401
                      title: Unauthorized Request
        '403':
          description: Forbidden
          content:
            application/vnd.api+json:
              examples:
                example_0:
                  value:
                    errors:
                    - status: 401
                      title: Unauthorized Request
      operationId: getApiV1CampaignsByCampaignIdLaunchLinks
      x-operation-id-source: derived
components:
  schemas:
    launch_links:
      type: object
      properties:
        data:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              type:
                type: string
              attributes:
                type: object
                properties:
                  created_at:
                    type: date
                  custom_param_value:
                    type:
                    - string
                    - 'null'
                  enabled:
                    type: boolean
                  label:
                    type: string
                  link_group:
                    type: string
                  link_parameter:
                    type: string
                  include_uid_param:
                    type: boolean
                  complete_live_link:
                    type: string
                required:
                - created_at
                - enabled
                - label
                - link_group
                - complete_live_link
            required:
            - type
  securitySchemes:
    JWT:
      type: http
      scheme: bearer
      bearerFormat: JWT
      flows:
        authorizationCode:
          tokenUrl: https://auth.jebbit.com/oauth/token
          scopes:
            read: Grants read access
            write: Grants write access
            delete: Grants delete access