Mob.ly Activations API

The Activations API from Mob.ly — 2 operation(s) for activations.

Operations 2

GET /activations List activations
GET /activations/{activationId} Get activation

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/mobly-activations-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

mobly-activations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Mobly REST Activations API
  version: v0
  description: 'Mobly REST API (version v0).


    - JSON-based

    - Authenticated via API key

    - Versioned under `/v0`

    '
servers:
- url: https://core-api.getmobly.com/api/v0
security:
- ApiKeyAuth: []
tags:
- name: Activations
paths:
  /activations:
    get:
      summary: List activations
      description: List activations for the organization.
      security:
      - ApiKeyAuth: []
      parameters:
      - in: query
        name: limit
        schema:
          type: integer
          default: 20
          maximum: 50
      - in: query
        name: offset
        schema:
          type: integer
          default: 0
      responses:
        '200':
          description: Activations list.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ActivationsListResponse'
      tags:
      - Activations
  /activations/{activationId}:
    get:
      summary: Get activation
      description: Fetch a single activation by ID.
      security:
      - ApiKeyAuth: []
      parameters:
      - in: path
        name: activationId
        schema:
          type: string
        required: true
        description: Activation ID
      responses:
        '200':
          description: Activation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ActivationSingleResponse'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      tags:
      - Activations
components:
  schemas:
    ActivationType:
      type: string
      description: Activation type.
      enum:
      - CONFERENCE
      - TRADE_SHOW
      - EVENT
      - SIDECAR
      - DINNER_MEAL
      - HAPPY_HOUR
      - BREAKFAST
      - LUNCH
      - COFFEE_CHAT
      - RECEPTION
      - SPEAKING_SESSION
      - PANEL_DISCUSSION
      - WORKSHOP
      - DEMO
      - SPORTS_GAME
      - PARTY
      - BOOTH
      - GIVEAWAY
      - NETWORKING_MIXER
      - ONSITE_OFFICE_VISIT
      - OTHER
    ActivationV0Response:
      type: object
      properties:
        id:
          type: string
          format: uuid
        eventId:
          type: integer
          format: int64
        name:
          type: string
        createdAt:
          type: string
          format: date-time
        type:
          $ref: '#/components/schemas/ActivationType'
        startDate:
          type: string
          format: date
        endDate:
          type: string
          format: date
        startTime:
          type: string
          example: 09:00:00
        endTime:
          type: string
          example: '12:00:00'
        createdBy:
          type:
          - string
          - 'null'
          format: email
        location:
          allOf:
          - $ref: '#/components/schemas/Location'
        users:
          type: array
          items:
            type: string
            format: email
        numberOfScans:
          type: integer
      required:
      - id
      - eventId
      - name
      - createdAt
      - type
      - startDate
      - endDate
      - startTime
      - endTime
      - users
      - numberOfScans
    Location:
      type: object
      properties:
        streetAddress:
          type:
          - string
          - 'null'
        city:
          type:
          - string
          - 'null'
        state:
          type:
          - string
          - 'null'
        zip:
          type:
          - string
          - 'null'
        country:
          type:
          - string
          - 'null'
        latitude:
          type:
          - string
          - 'null'
        longitude:
          type:
          - string
          - 'null'
        timeZone:
          type:
          - string
          - 'null'
    ActivationSingleResponse:
      type: object
      properties:
        status:
          type: integer
          example: 200
        results:
          $ref: '#/components/schemas/ActivationV0Response'
      required:
      - status
      - results
    ErrorResponse:
      type: object
      properties:
        status:
          type: integer
        error:
          type: string
      required:
      - status
      - error
    ActivationsListResponse:
      type: object
      properties:
        status:
          type: integer
          example: 200
        pagination:
          $ref: '#/components/schemas/Pagination'
        results:
          type: object
          properties:
            activations:
              type: array
              items:
                $ref: '#/components/schemas/ActivationV0Response'
            total:
              type: integer
      required:
      - status
      - pagination
      - results
    Pagination:
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
      required:
      - limit
      - offset
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key