Edge Delta Lookup Tables API

The Lookup Tables API from Edge Delta — 4 operation(s) for lookup tables.

Operations 6

POST /v1/orgs/{org_id}/lookup_tables
GET /v1/orgs/{org_id}/lookup_tables/metadata
GET /v1/orgs/{org_id}/lookup_tables/{id}
PUT /v1/orgs/{org_id}/lookup_tables/{id}
DELETE /v1/orgs/{org_id}/lookup_tables/{id}
GET /v1/orgs/{org_id}/lookup_tables/{id}/metadata

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/edge-delta-lookup-tables-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

edge-delta-lookup-tables-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: 'Edge Delta API provides endpoints to manage your configs/integrations/rehydrations and more. Generate an API token to get started: https://app.edgedelta.com/admin/organization#api-tokens'
  title: Edge Delta Access Lookup Tables API
  contact:
    name: API Support
    email: support@edgedelta.com
  version: '1.0'
servers:
- url: https://api.edgedelta.com
tags:
- name: Lookup Tables
paths:
  /v1/orgs/{org_id}/lookup_tables:
    post:
      security:
      - ApiKeyAuth: []
      description: Creates a Lookup Table metadata and stores its data for the given org and id.
      tags:
      - Lookup Tables
      parameters:
      - description: Org ID
        name: org_id
        in: path
        required: true
        schema:
          type: string
      - description: Whether or not this lookup table is being created for ED packs
        name: is_ed_lookup_table
        in: query
        schema:
          type: boolean
      - description: Time the lookup table was created. Only used by packs
        name: created
        in: query
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/core.LookupTable'
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                data:
                  type: string
                  description: Table data
                  format: binary
                description:
                  type: string
                  description: Description of the table
                tags:
                  type: string
                  description: Tags for the table
              required:
              - data
  /v1/orgs/{org_id}/lookup_tables/metadata:
    get:
      security:
      - ApiKeyAuth: []
      description: Returns metadata of all of the Lookup Tables for the given org.
      tags:
      - Lookup Tables
      parameters:
      - description: Org ID
        name: org_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/core.LookupTablesMetadataResponse'
  /v1/orgs/{org_id}/lookup_tables/{id}:
    get:
      security:
      - ApiKeyAuth: []
      description: Returns data for the specific Lookup Table.
      tags:
      - Lookup Tables
      parameters:
      - description: Org ID
        name: org_id
        in: path
        required: true
        schema:
          type: string
      - description: Lookup Table ID
        name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/core.LookupTableResponse'
    put:
      security:
      - ApiKeyAuth: []
      description: Updates data and/or metadata of a Lookup Table for the given org and id.
      tags:
      - Lookup Tables
      parameters:
      - description: Org ID
        name: org_id
        in: path
        required: true
        schema:
          type: string
      - description: Lookup Table ID
        name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                data:
                  type: string
                  description: Table data
                  format: binary
              required:
              - data
    delete:
      security:
      - ApiKeyAuth: []
      description: Deletes the Lookup Table for the given org and id.
      tags:
      - Lookup Tables
      parameters:
      - description: Org ID
        name: org_id
        in: path
        required: true
        schema:
          type: string
      - description: Lookup Table ID
        name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
  /v1/orgs/{org_id}/lookup_tables/{id}/metadata:
    get:
      security:
      - ApiKeyAuth: []
      description: Returns metadata of the Lookup Tables for the given org and id.
      tags:
      - Lookup Tables
      parameters:
      - description: Org ID
        name: org_id
        in: path
        required: true
        schema:
          type: string
      - description: Lookup Table ID
        name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/core.LookupTableMetadataResponse'
components:
  schemas:
    core.LookupTableMetadataResponse:
      type: object
      properties:
        metadata:
          $ref: '#/components/schemas/core.LookupTableMetadata'
    core.LookupTableResponse:
      type: object
      properties:
        data:
          type: array
          items:
            type: integer
        metadata:
          $ref: '#/components/schemas/core.LookupTableMetadata'
    core.LookupTableMetadata:
      type: object
      properties:
        count:
          type: integer
        created_on:
          type: string
        description:
          type: string
        name:
          type: string
        size:
          type: integer
        tags:
          type: string
        updated_on:
          type: string
    core.LookupTablesMetadataResponse:
      type: object
      properties:
        metadatas:
          type: array
          items:
            $ref: '#/components/schemas/core.LookupTableMetadata'
    core.LookupTable:
      type: object
      properties:
        count:
          type: integer
        created_on:
          type: string
        description:
          type: string
        name:
          type: string
        pk:
          description: PK is org ID
          type: string
        size:
          type: integer
        sk:
          description: SK is name of each lookup table
          type: string
        tags:
          type: string
        updated_on:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      name: X-ED-API-Token
      in: header