ELISA Organizers API

The Organizers API from ELISA — 3 operation(s) for organizers.

Operations 7

GET /organizers
GET /organizers/{id}
POST /organizers/{id}
DELETE /organizers/{id}
GET /organizers/by-slug/{slug}
POST /organizers/by-slug/{slug}
DELETE /organizers/by-slug/{slug}

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/elisa-organizers-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

elisa-organizers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  title: Events Calendar REST Organizers API
  description: The Events Calendar REST API allows accessing upcoming events information easily and conveniently.
servers:
- url: https://elisa.tech/wp-json/tribe/events/v1/
tags:
- name: Organizers
paths:
  /organizers:
    get:
      parameters:
      - in: query
        schema:
          type: integer
        description: The archive page to return
        required: false
        name: page
      - in: query
        schema:
          type: integer
        description: The number of organizers to return on each page
        required: false
        name: per_page
      - in: query
        schema:
          type: string
        description: Organizers should contain the specified string in the title, description or custom fields
        required: false
        name: search
      - in: query
        schema:
          type: integer
        description: Organizers should be related to this event
        required: false
        name: event
      - in: query
        schema:
          type: boolean
        description: Organizers should have events associated to them
        required: false
        name: has_events
      - in: query
        schema:
          type: boolean
        description: Organizers should have upcoming events associated to them
        required: false
        name: only_with_upcoming
      - in: query
        schema:
          type: string
        description: The organizer post status
        required: false
        name: status
      responses:
        '200':
          description: Returns all the organizers matching the search criteria
          content:
            application/json:
              schema:
                title: organizers
                type: array
                items:
                  $ref: '#/components/schemas/Organizer'
        '400':
          description: One or more of the specified query variables has a bad format
        '404':
          description: The requested page was not found.
      tags:
      - Organizers
  /organizers/{id}:
    get:
      parameters:
      - in: path
        schema:
          type: integer
        description: the organizer post ID
        required: true
        name: id
      responses:
        '200':
          description: Returns the data of the organizer with the specified post ID
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Organizer'
        '400':
          description: The organizer post ID is missing.
        '403':
          description: The organizer with the specified ID is not accessible.
        '404':
          description: An organizer with the specified event does not exist.
      tags:
      - Organizers
    post:
      parameters:
      - in: path
        schema:
          type: integer
        description: the organizer post ID
        required: true
        name: id
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                id:
                  description: the organizer post ID
                  type: integer
                author:
                  description: The organizer author ID
                  type: integer
                date:
                  description: The organizer publication date
                  type: string
                date_utc:
                  description: The organizer publication date (UTC time zone)
                  type: string
                organizer:
                  description: The organizer name
                  type: string
                description:
                  description: The organizer description
                  type: string
                status:
                  description: The organizer post status
                  type: string
                phone:
                  description: The organizer phone number
                  type: string
                website:
                  description: The organizer website
                  type: string
                email:
                  description: The organizer e-mail address
                  type: string
                image:
                  description: The organizer featured image ID or URL
                  type: string
      responses:
        '201':
          description: Returns the data of the created organizer
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Organizer'
        '400':
          description: A required parameter is missing or an input parameter is in the wrong format
        '403':
          description: The user is not authorized to create organizers
      tags:
      - Organizers
    delete:
      parameters:
      - in: path
        schema:
          type: integer
        description: the organizer post ID
        required: true
        name: id
      responses:
        '200':
          description: Deletes an organizer and returns its data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Organizer'
        '400':
          description: The organizer post ID is missing or does not exist.
        '403':
          description: The current user cannot delete the organizer with the specified ID.
        '410':
          description: The organizer with the specified ID has been deleted already.
        '500':
          description: The organizer with the specified ID could not be deleted.
      tags:
      - Organizers
  /organizers/by-slug/{slug}:
    get:
      parameters:
      - in: path
        schema:
          type: string
        description: the organizer post name
        required: true
        name: slug
      responses:
        '200':
          description: Returns the data of the organizer with the specified post ID
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Organizer'
        '400':
          description: The organizer post ID is missing.
        '403':
          description: The organizer with the specified ID is not accessible.
        '404':
          description: An organizer with the specified event does not exist.
      tags:
      - Organizers
    post:
      parameters:
      - in: path
        schema:
          type: string
        description: the organizer post name
        required: true
        name: slug
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                slug:
                  description: the organizer post name
                  type: string
                author:
                  description: The organizer author ID
                  type: integer
                date:
                  description: The organizer publication date
                  type: string
                date_utc:
                  description: The organizer publication date (UTC time zone)
                  type: string
                organizer:
                  description: The organizer name
                  type: string
                description:
                  description: The organizer description
                  type: string
                status:
                  description: The organizer post status
                  type: string
                phone:
                  description: The organizer phone number
                  type: string
                website:
                  description: The organizer website
                  type: string
                email:
                  description: The organizer e-mail address
                  type: string
                image:
                  description: The organizer featured image ID or URL
                  type: string
      responses:
        '201':
          description: Returns the data of the created organizer
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Organizer'
        '400':
          description: A required parameter is missing or an input parameter is in the wrong format
        '403':
          description: The user is not authorized to create organizers
      tags:
      - Organizers
    delete:
      parameters:
      - in: path
        schema:
          type: string
        description: the organizer post name
        required: true
        name: slug
      responses:
        '200':
          description: Deletes an organizer and returns its data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Organizer'
        '400':
          description: The organizer post ID is missing or does not exist.
        '403':
          description: The current user cannot delete the organizer with the specified ID.
        '410':
          description: The organizer with the specified ID has been deleted already.
        '500':
          description: The organizer with the specified ID could not be deleted.
      tags:
      - Organizers
components:
  schemas:
    Organizer:
      type: object
      properties:
        id:
          type: integer
          description: The organizer WordPress post ID
        global_id:
          type: string
          description: The organizer ID used to globally identify in Event Aggregator
        global_id_lineage:
          type: array
          items:
            type: string
          description: An Array containing the lineage of where this organizer comes from, this should not change after the organizer is created.
        author:
          type: integer
          description: The organizer author WordPress post ID
        date:
          type: string
          description: The organizer creation date in the site time zone
        date_utc:
          type: string
          description: The organizer creation date in UTC time
        modified:
          type: string
          description: The organizer last modification date in the site time zone
        modified_utc:
          type: string
          description: The organizer last modification date in UTC time
        status:
          type: string
          description: The organizer status
        url:
          type: string
          description: The URL to the organizer page
        organizer:
          type: string
          description: The organizer name
        description:
          type: string
          description: The organizer long description
        excerpt:
          type: string
          description: The organizer short description
        slug:
          type: string
          description: The organizer slug
        image:
          type: string
          description: The event featured image details if set
          $ref: '#/components/schemas/Image'
        phone:
          type: string
          description: The organizer phone number
        website:
          type: string
          description: The organizer website
        email:
          type: string
          description: The organizer email address
    ImageSize:
      type: object
      properties:
        width:
          type: integer
          description: The image width in pixels in the specified size
        height:
          type: integer
          description: The image height in pixels in the specified size
        mime-type:
          type: string
          description: The image mime-type
        url:
          type: string
          format: uri
          description: The link to the image in the specified size on the site
    Image:
      type: object
      properties:
        url:
          type: string
          format: uri
          description: The URL to the full size version of the image
        id:
          type: integer
          description: The image WordPress post ID
        extension:
          type: string
          description: The image file extension
        width:
          type: integer
          description: The image natural width in pixels
        height:
          type: integer
          description: The image natural height in pixels
        sizes:
          type: array
          description: The details about each size available for the image
          items:
            $ref: '#/components/schemas/ImageSize'