ADRO Improvement Requests API

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

Operations 1

POST /improvement-requests/ Submit an improvement request #

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-improvement-requests-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-improvement-requests-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: aox-django-backend Improvement Requests API
  version: 1.0.0
tags:
- name: improvement_requests
paths:
  /improvement-requests/:
    post:
      operationId: improvement_requests_create
      summary: Submit an improvement request
      tags:
      - improvement_requests
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ImprovementRequestCreate'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/ImprovementRequestCreate'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/ImprovementRequestCreate'
        required: true
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ImprovementRequest'
          description: ''
components:
  schemas:
    ImprovementRequest:
      type: object
      properties:
        id:
          type: integer
          readOnly: true
        tenantSchema:
          type: string
          readOnly: true
        tenantName:
          type: string
          readOnly: true
        teamId:
          type: integer
          readOnly: true
        teamName:
          type: string
          readOnly: true
        userId:
          type: integer
          readOnly: true
        userEmail:
          type: string
          format: email
          readOnly: true
        title:
          type: string
          readOnly: true
        category:
          enum:
          - improvement
          - requirement
          - other
          type: string
          description: '* `improvement` - Improvement

            * `requirement` - Additional requirement

            * `other` - Other'
          x-spec-enum-id: a54dc59c6316068e
          readOnly: true
        categoryLabel:
          type: string
          readOnly: true
        content:
          type: string
          readOnly: true
        pagePath:
          type: string
          readOnly: true
        status:
          enum:
          - new
          - reviewing
          - resolved
          - closed
          type: string
          description: '* `new` - New

            * `reviewing` - Reviewing

            * `resolved` - Resolved

            * `closed` - Closed'
          x-spec-enum-id: f58cf3c567404c66
          readOnly: true
        adminNote:
          type: string
          readOnly: true
        reviewedByEmail:
          type: string
          format: email
          readOnly: true
        createdAt:
          type: string
          format: date-time
          readOnly: true
        updatedAt:
          type: string
          format: date-time
          readOnly: true
      required:
      - adminNote
      - category
      - categoryLabel
      - content
      - createdAt
      - id
      - pagePath
      - reviewedByEmail
      - status
      - teamId
      - teamName
      - tenantName
      - tenantSchema
      - title
      - updatedAt
      - userEmail
      - userId
    ImprovementRequestCreate:
      type: object
      properties:
        title:
          type: string
          maxLength: 200
        category:
          enum:
          - improvement
          - requirement
          - other
          type: string
          description: '* `improvement` - improvement

            * `requirement` - requirement

            * `other` - other'
          x-spec-enum-id: ab7ebfec83fab8bd
        content:
          type: string
          maxLength: 8000
        pagePath:
          type: string
          default: ''
          maxLength: 2000
      required:
      - category
      - content
      - title