Namely Likes API

The Likes API from Namely — 1 operation(s) for likes.

Operations 1

GET /likes/event/{event-id}/recent Get an Event's Likes #

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/namely-likes-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

namely-likes-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: ''
  title: Namely Likes API
  description: Move your app forward with the Namely API Move your app forward with the Namely API
tags:
- name: Likes
paths:
  /likes/event/{event-id}/recent:
    parameters:
    - name: event-id
      in: path
      description: <code>id</code> of the event whose likes you want to view
      required: true
      schema:
        type: string
    get:
      operationId: GET_likes-event-event_id-recent
      summary: Get an Event's Likes
      tags:
      - Likes
      description: Returns a list of profiles that liked a particular event.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  likes:
                    type: array
                    items:
                      $ref: '#/components/schemas/Like'
      security:
      - Authorization: []
components:
  schemas:
    Like:
      title: Like
      type: object
      properties:
        id:
          type: string
          description: unique identifier of the like
        href:
          type: string
          description: a link to the profile of "liker"
        full_name:
          type: string
          description: full name of the "liker" per his/her profile
        job_title:
          type: string
          description: label of the job title of the "liker" per his/her profile
        links:
          type: object
          properties:
            image:
              type: string
              description: unique identifier of the profile image of the "liker"
            thumbs:
              type: object
              description: multiple resolutions of the profile image
  securitySchemes:
    Authorization:
      name: Authorization
      type: apiKey
      in: header