Orderful Organization API

Retrieve organization information.

Operations 1

GET /v3/organizations/me Get your Organization details #

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/orderful-organization-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

orderful-organization-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Orderful Conversion Organization API
  description: The official Orderful API documentation.
  version: 2.15.0
  contact:
    name: Orderful
    url: https://orderful.com
    email: developers@orderful.com
  termsOfService: https://orderful.com/terms-and-conditions/
servers:
- url: https://api.orderful.com
tags:
- name: Organization
  description: Retrieve organization information.
paths:
  /v3/organizations/me:
    get:
      operationId: OrganizationV3Controller_getOwn
      summary: Get your Organization details
      description: Retrieves the Organization information for the current user.
      tags:
      - Organization
      parameters:
      - name: orderful-api-key
        in: header
        required: true
        description: Your Orderful API key.
        schema:
          type: string
      responses:
        '200':
          description: Organization details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetOrganizationMeResponseV3'
components:
  schemas:
    GetOrganizationMeEdiAccount:
      type: object
      required:
      - id
      - name
      - liveIsaId
      - testIsaId
      properties:
        id:
          type: string
          description: EDI account ID.
        name:
          type: string
          description: EDI account name.
        liveIsaId:
          type: string
          description: Live ISA ID.
        testIsaId:
          type: string
          description: Test ISA ID.
    GetOrganizationMeResponseV3:
      type: object
      description: Organization details for the current user.
      required:
      - id
      - name
      - ediAccounts
      properties:
        id:
          type: string
          description: Unique organization identifier.
          example: '123'
        name:
          type: string
          description: Organization name.
          example: Orderful
        ediAccounts:
          description: EDI accounts belonging to the organization.
          type: array
          items:
            $ref: '#/components/schemas/GetOrganizationMeEdiAccount'
  securitySchemes:
    API_KEY:
      type: apiKey
      in: header
      name: orderful-api-key