ADRO Book Demo API

The book_demo API from ADRO — 1 operation(s) for book_demo.

Operations 1

POST /book_demo/ 데모 예약 신청 #

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/adro1b33-book-demo-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

adro1b33-book-demo-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: aox-django-backend Book Demo API
  version: 1.0.0
tags:
- name: Book Demo
paths:
  /book_demo/:
    post:
      operationId: book_demo_create
      summary: 데모 예약 신청
      tags:
      - Book Demo
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BookDemoCreate'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/BookDemoCreate'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/BookDemoCreate'
        required: true
      security:
      - {}
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BookDemoCreate'
          description: ''
components:
  schemas:
    BookDemoCreate:
      type: object
      properties:
        id:
          type: integer
          readOnly: true
        name:
          type: string
          maxLength: 100
        firstName:
          type: string
          maxLength: 100
        lastName:
          type: string
          maxLength: 100
        company:
          type: string
          maxLength: 150
        email:
          type: string
          format: email
          maxLength: 254
        phoneNumber:
          type: string
          maxLength: 50
        industry:
          enum:
          - Automotive
          - Motorsports
          - Aerospace & Aviation
          - Defense
          - Industrial Manufacturing
          - Consumer Electronics
          - Robotics
          - Transportation & Mobility
          - Marine & Shipbuilding
          - Software & IT
          - AI & Machine Learning
          - Simulation & Modeling
          - Research & Academia
          - Engineering Services
          - Startup
          - Consulting
          - Media & Marketing
          - Other
          type: string
          description: '* `Automotive` - Automotive

            * `Motorsports` - Motorsports

            * `Aerospace & Aviation` - Aerospace & Aviation

            * `Defense` - Defense

            * `Industrial Manufacturing` - Industrial Manufacturing

            * `Consumer Electronics` - Consumer Electronics

            * `Robotics` - Robotics

            * `Transportation & Mobility` - Transportation & Mobility

            * `Marine & Shipbuilding` - Marine & Shipbuilding

            * `Software & IT` - Software & IT

            * `AI & Machine Learning` - AI & Machine Learning

            * `Simulation & Modeling` - Simulation & Modeling

            * `Research & Academia` - Research & Academia

            * `Engineering Services` - Engineering Services

            * `Startup` - Startup

            * `Consulting` - Consulting

            * `Media & Marketing` - Media & Marketing

            * `Other` - Other'
          x-spec-enum-id: c7a630fa0a654937
        jobRole:
          enum:
          - Exterior Designer
          - Interior Designer
          - Concept Designer
          - Product Designer
          - Modeler / 3D Artist
          - Aerodynamics Engineer
          - CFD Engineer
          - Mechanical Engineer
          - Performance Engineer
          - Product Manager
          - Founder / CEO
          - Research Scientist
          - Student / Intern
          - Consultant
          - Other
          type: string
          description: '* `Exterior Designer` - Exterior Designer

            * `Interior Designer` - Interior Designer

            * `Concept Designer` - Concept Designer

            * `Product Designer` - Product Designer

            * `Modeler / 3D Artist` - Modeler / 3D Artist

            * `Aerodynamics Engineer` - Aerodynamics Engineer

            * `CFD Engineer` - CFD Engineer

            * `Mechanical Engineer` - Mechanical Engineer

            * `Performance Engineer` - Performance Engineer

            * `Product Manager` - Product Manager

            * `Founder / CEO` - Founder / CEO

            * `Research Scientist` - Research Scientist

            * `Student / Intern` - Student / Intern

            * `Consultant` - Consultant

            * `Other` - Other'
          x-spec-enum-id: b1c4d7d3d3c29c96
        privacyConsent:
          type: boolean
        marketingConsent:
          type: boolean
      required:
      - email
      - firstName
      - id
      - lastName
      - name
      - phoneNumber
      - privacyConsent