Emburse Company API
The Company API from Emburse — 2 operation(s) for company.
The Company API from Emburse — 2 operation(s) for company.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/emburse-company-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Emburse Cards Company API
version: 1.0.0
description: Emburse Cards API enables the creation and management of virtual and physical spending cards at scale for custom business solutions and third-party integrations.
servers:
- url: https://api.emburse.com/v1
description: Production API
- url: https://api.emburse-qa.com/v1
description: QA API
security:
- BearerAuth: []
tags:
- name: Company
paths:
/company:
get:
operationId: get_company
description: Show company instance instead of listing companies.
parameters:
- name: limit
required: false
in: query
description: Number of results to return per page.
schema:
type: integer
- name: offset
required: false
in: query
description: The initial index from which to return the results.
schema:
type: integer
- name: ordering
required: false
in: query
description: Which field to use when ordering the results.
schema:
type: string
responses:
'200':
content:
application/json:
schema:
type: object
required:
- count
- results
properties:
count:
type: integer
example: 123
next:
type:
- string
- 'null'
format: uri
example: http://api.example.org/accounts/?offset=400&limit=100
previous:
type:
- string
- 'null'
format: uri
example: http://api.example.org/accounts/?offset=200&limit=100
results:
type: array
items:
$ref: '#/components/schemas/APICompany'
description: ''
'400':
description: Bad Request - Invalid arguments or malformed request
'401':
description: Unauthorized - Invalid or missing authentication token
'403':
description: Forbidden - Insufficient permissions for this operation
'404':
description: Not Found - Resource does not exist
'409':
description: Conflict - Request conflicts with existing data
'429':
description: Too Many Requests - Rate limit exceeded
'500':
description: Internal Server Error
tags:
- Company
/company/{id}:
get:
operationId: get_company_by_id
description: ''
parameters:
- name: id
in: path
required: true
description: ''
schema:
type: string
- name: ordering
required: false
in: query
description: Which field to use when ordering the results.
schema:
type: string
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/APICompany'
description: ''
'400':
description: Bad Request - Invalid arguments or malformed request
'401':
description: Unauthorized - Invalid or missing authentication token
'403':
description: Forbidden - Insufficient permissions for this operation
'404':
description: Not Found - Resource does not exist
'409':
description: Conflict - Request conflicts with existing data
'429':
description: Too Many Requests - Rate limit exceeded
'500':
description: Internal Server Error
tags:
- Company
components:
schemas:
APICompany:
type: object
properties:
id:
type: string
format: uuid
readOnly: true
billing_address:
type: object
properties:
address_1:
type: string
address_2:
type: string
city:
type: string
state:
type: string
postal_code:
type: string
zip_code:
type: string
country:
type: string
required:
- address_1
- address_2
- city
- state
- postal_code
- zip_code
- country
readOnly: true
created_at:
type: string
format: date-time
readOnly: true
name:
type: string
readOnly: true
maxLength: 255
partner:
type: object
properties:
id:
type: string
format: uuid
readOnly: true
token:
type: string
readOnly: true
pattern: ^[\w-]+$
maxLength: 255
brand_name:
type: string
readOnly: true
maxLength: 255
required:
- token
- brand_name
readOnly: true
shipping_address:
type: object
properties:
id:
type: string
format: uuid
readOnly: true
url:
type: string
readOnly: true
address_1:
type: string
readOnly: true
maxLength: 255
address_2:
type: string
readOnly: true
default: ''
city:
type: string
readOnly: true
maxLength: 255
state:
type: string
readOnly: true
maxLength: 255
zip_code:
type: string
readOnly: true
required:
- address_1
readOnly: true
status:
type: string
readOnly: true
website:
type: string
format: uri
readOnly: true
maxLength: 200
pattern: "^(?:[a-z0-9.+-]*)://(?:[^\\s:@/]+(?::[^\\s:@/]*)?@)?(?:(?:0|25[0-5]|2[0-4][0-9]|1[0-9]?[0-9]?|[1-9][0-9]?)(?:\\.(?:0|25[0-5]|2[0-4][0-9]|1[0-9]?[0-9]?|[1-9][0-9]?)){3}|\\[[0-9a-f:.]+\\]|([a-z¡-\uFFFF0-9](?:[a-z¡-\uFFFF0-9-]{0,61}[a-z¡-\uFFFF0-9])?(?:\\.(?!-)[a-z¡-\uFFFF0-9-]{1,63}(?<!-))*\\.(?!-)(?:[a-z¡-\uFFFF-]{2,63}|xn--[a-z0-9]{1,59})(?<!-)\\.?|localhost))(?::[0-9]{1,5})?(?:[/?#][^\\s]*)?\\z"
verification_status:
type: string
readOnly: true
required:
- billing_address
- created_at
- name
- partner
- shipping_address
- verification_status
securitySchemes:
BearerAuth:
type: http
scheme: bearer
description: 'OAuth2 access token. Include in Authorization header: `Authorization: Bearer YOUR_ACCESS_TOKEN`'