PlateIQ accounts API

The accounts API from PlateIQ — 3 operation(s) for accounts.

Operations 3

GET /accounts/{id}/companies Retrieve companies for an account #
GET /accounts/{id}/locations Retrieve locations for an account #
GET /accounts Retrieve accounts for the authenticated user #

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/plateiq-accounts-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

plateiq-accounts-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reference Accounts API
  version: 1.0.0
servers:
- url: https://api.ottimate.com/v1
  description: Production
- url: https://sandbox-api.ottimate.com/v1
  description: Sandbox
tags:
- name: accounts
paths:
  /accounts/{id}/companies:
    get:
      operationId: get-accounts-id-companies
      summary: Retrieve companies for an account
      description: Returns a paginated list of companies associated with the specified account.
      tags:
      - accounts
      parameters:
      - name: id
        in: path
        description: Account ID
        required: true
        schema:
          type: string
      - name: search
        in: query
        description: Search term for company name
        required: false
        schema:
          type: string
      - name: limit
        in: query
        description: Number of items per page
        required: false
        schema:
          type: integer
      - name: page
        in: query
        description: Page number for pagination
        required: false
        schema:
          type: integer
      - name: Authorization
        in: header
        description: OAuth2 authentication flows. Auth server URLs will vary by environment
        required: true
        schema:
          type: string
      - name: X-Api-Key
        in: header
        description: API key for authentication
        required: true
        schema:
          type: string
      - name: X-API-Version
        in: header
        description: 'API version to use (optional, defaults to latest). Supported values: 1.0.0, 1.1.0.'
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Successful response with paginated company list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Accounts_get_accounts_id_companies_Response_200'
  /accounts/{id}/locations:
    get:
      operationId: get-accounts-id-locations
      summary: Retrieve locations for an account
      description: Returns a paginated list of locations associated with the specified account.
      tags:
      - accounts
      parameters:
      - name: id
        in: path
        description: Account ID
        required: true
        schema:
          type: string
      - name: search
        in: query
        description: Search term for location name
        required: false
        schema:
          type: string
      - name: limit
        in: query
        description: Number of items per page
        required: false
        schema:
          type: integer
      - name: page
        in: query
        description: Page number for pagination
        required: false
        schema:
          type: integer
      - name: Authorization
        in: header
        description: OAuth2 authentication flows. Auth server URLs will vary by environment
        required: true
        schema:
          type: string
      - name: X-Api-Key
        in: header
        description: API key for authentication
        required: true
        schema:
          type: string
      - name: X-API-Version
        in: header
        description: 'API version to use (optional, defaults to latest). Supported values: 1.0.0, 1.1.0.'
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Successful response with paginated location list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Accounts_get_accounts_id_locations_Response_200'
  /accounts:
    get:
      operationId: get-accounts-root
      summary: Retrieve accounts for the authenticated user
      description: Returns a paginated list of Ottimate accounts that the authenticated user has access to, based on partner associations linked to the OAuth client credentials.
      tags:
      - accounts
      parameters:
      - name: search
        in: query
        description: Search term to filter accounts by name
        required: false
        schema:
          type: string
      - name: limit
        in: query
        description: Number of items per page
        required: false
        schema:
          type: integer
      - name: page
        in: query
        description: Page number for pagination
        required: false
        schema:
          type: integer
      - name: Authorization
        in: header
        description: OAuth2 authentication flows. Auth server URLs will vary by environment
        required: true
        schema:
          type: string
      - name: X-Api-Key
        in: header
        description: API key for authentication
        required: true
        schema:
          type: string
      - name: X-API-Version
        in: header
        description: 'API version to use (optional, defaults to latest). Supported values: 1.0.0, 1.1.0.'
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Successful response with paginated account list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Accounts_get_accounts_root_Response_200'
components:
  schemas:
    Accounts_get_accounts_root_Response_200:
      type: object
      properties:
        count:
          type: integer
        page:
          type: integer
        limit:
          type: integer
        results:
          type: array
          items:
            $ref: '#/components/schemas/AccountObject'
      title: Accounts_get_accounts_root_Response_200
    Accounts_get_accounts_id_locations_Response_200:
      type: object
      properties:
        count:
          type: integer
        page:
          type: integer
        limit:
          type: integer
        results:
          type: array
          items:
            $ref: '#/components/schemas/LocationObject'
      title: Accounts_get_accounts_id_locations_Response_200
    CompanyObject:
      type: object
      properties:
        id:
          type: integer
        name:
          type: string
        location_count:
          type: integer
        plan:
          type: string
      required:
      - id
      - name
      title: CompanyObject
    Accounts_get_accounts_id_companies_Response_200:
      type: object
      properties:
        count:
          type: integer
        page:
          type: integer
        limit:
          type: integer
        results:
          type: array
          items:
            $ref: '#/components/schemas/CompanyObject'
      title: Accounts_get_accounts_id_companies_Response_200
    LocationObject:
      type: object
      properties:
        id:
          type: integer
        name:
          type: string
        company:
          type: string
        location_group:
          type: string
          description: 'The group this location belongs to. Returned when X-API-Version: 1.1.0 or later.'
        group:
          type: string
          description: 'Deprecated. Use location_group (requires X-API-Version: 1.1.0). Returned for X-API-Version: 1.0.0 and unversioned requests.'
      required:
      - id
      - name
      title: LocationObject
    AccountObject:
      type: object
      properties:
        id:
          type: string
          description: Account ID (racc_ prefixed)
        name:
          type: string
          description: Account name
        created_date:
          type: string
          description: Account creation timestamp
        created_date_utc:
          type:
          - string
          - 'null'
          format: date-time
          description: UTC equivalent of created_date. ISO 8601 with Z suffix, e.g. "2025-05-20T15:17:35.652584Z".
        company_count:
          type: integer
          description: Number of companies in this account
        location_count:
          type: integer
          description: Number of active locations in this account
      required:
      - id
      - name
      title: AccountObject
  securitySchemes:
    OAuth2:
      type: http
      scheme: bearer
      description: OAuth2 authentication flows. Auth server URLs will vary by environment