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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/rocketlane-invoices-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
OpenAPI Specification
openapi: 3.2.0
info:
title: Rocketlane Comments Invoices API
description: Rocketlane API
version: '1.0'
servers:
- url: https://api.rocketlane.com/api
description: Production
- url: https://api.nitro.run/api
description: Staging
- url: https://project.api.orbits.run/api
description: Orbits
security:
- api-key:
- 'read : write'
tags:
- name: Invoices
description: Endpoints for invoices resource
paths:
/1.0/invoices/{invoiceId}/payments:
get:
tags:
- Invoices
summary: Get invoice payments by invoice Id
operationId: get-invoice-payments
parameters:
- name: invoiceId
in: path
description: Unique identifier of the invoice
required: true
schema:
minimum: 0
type: integer
format: int64
default: 1
example: 200
- name: pageSize
in: query
description: This parameter sets the maximum number of responses to be displayed per page. If the page size is insufficient to accommodate the whole number of responses obtained, the pagination object will include a link to the next page as well as the next page token. If left blank, it defaults to 100.
schema:
minimum: 0
type: number
format: int32
example: 100
- name: pageToken
in: query
description: Use this parameter to specify the pageToken of a page to which you want to navigate. This pageToken can be obtained from a previous request which specified a limit and will only be active for 15 minutes after it is created.
schema:
type: string
example: 59c12a42-dd10-11ed-afa1-0242ac120002
responses:
'200':
description: The requested action was successfully executed.
content:
application/json:
schema:
$ref: '#/components/schemas/ExampleAPIResponseInvoicePayments'
'400':
description: This error typically happens when the request payload contains an error. If you want to make sure that the request's parameters are named correctly and are the right data types, you can examine the request's syntax.
content:
application/json:
schema:
$ref: '#/components/schemas/badRequestErrorlist'
'401':
description: You see this error when trying to access this resource without being authenticated. Check the API request header to make sure it is not empty and has a valid api-key that you acquired from the Rocketlane API Settings tab.
content:
application/json:
schema:
$ref: '#/components/schemas/unauthorizedErrorlist'
'404':
description: If we were unable to locate the resource you were looking for or the proper API endpoint you were looking for, this error would show up.
content:
application/json:
schema:
$ref: '#/components/schemas/notFoundErrorlist'
/1.0/invoices/{invoiceId}/lines:
get:
tags:
- Invoices
summary: Get invoice line items by invoice Id
operationId: get-invoice-line-items
parameters:
- name: invoiceId
in: path
description: Unique identifier of the invoice
required: true
schema:
minimum: 0
type: integer
format: int64
default: 1
example: 200
- name: pageSize
in: query
description: This parameter sets the maximum number of responses to be displayed per page. If the page size is insufficient to accommodate the whole number of responses obtained, the pagination object will include a link to the next page as well as the next page token. If left blank, it defaults to 100.
schema:
minimum: 0
type: number
format: int32
example: 100
- name: pageToken
in: query
description: Use this parameter to specify the pageToken of a page to which you want to navigate. This pageToken can be obtained from a previous request which specified a limit and will only be active for 15 minutes after it is created.
schema:
type: string
example: 59c12a42-dd10-11ed-afa1-0242ac120002
responses:
'200':
description: The requested action was successfully executed.
content:
application/json:
schema:
$ref: '#/components/schemas/ExampleAPIResponseInvoiceLineItems'
'400':
description: This error typically happens when the request payload contains an error. If you want to make sure that the request's parameters are named correctly and are the right data types, you can examine the request's syntax.
content:
application/json:
schema:
$ref: '#/components/schemas/badRequestErrorlist'
'401':
description: You see this error when trying to access this resource without being authenticated. Check the API request header to make sure it is not empty and has a valid api-key that you acquired from the Rocketlane API Settings tab.
content:
application/json:
schema:
$ref: '#/components/schemas/unauthorizedErrorlist'
'404':
description: If we were unable to locate the resource you were looking for or the proper API endpoint you were looking for, this error would show up.
content:
application/json:
schema:
$ref: '#/components/schemas/notFoundErrorlist'
/1.0/invoices/{invoiceId}:
get:
tags:
- Invoices
summary: Get invoice by Id
operationId: get-invoice
parameters:
- name: invoiceId
in: path
description: Unique identifier of the invoice
required: true
schema:
minimum: 0
type: integer
format: int64
default: 1
example: 200
- name: includeFields
in: query
description: This query parameter allows you to specify which fields should be returned in the response body by selecting from the drop down. To get the relevant fields, use comma separated values. If the field is left blank, the default properties are returned.
required: false
style: form
explode: false
schema:
type: array
items:
type: string
enum:
- notes
- attachments
- name: includeAllFields
in: query
description: This query parameter allows you to specify if all the fields should be returned in the response body. If the field is left blank, the default properties are returned.
required: false
schema:
type: boolean
example: true
responses:
'200':
description: The requested action was successfully executed.
content:
application/json:
schema:
$ref: '#/components/schemas/InvoicePublicAPIResponseEntity'
'400':
description: This error typically happens when the request payload contains an error. If you want to make sure that the request's parameters are named correctly and are the right data types, you can examine the request's syntax.
content:
application/json:
schema:
$ref: '#/components/schemas/badRequestErrorlist'
'401':
description: You see this error when trying to access this resource without being authenticated. Check the API request header to make sure it is not empty and has a valid api-key that you acquired from the Rocketlane API Settings tab.
content:
application/json:
schema:
$ref: '#/components/schemas/unauthorizedErrorlist'
'404':
description: If we were unable to locate the resource you were looking for or the proper API endpoint you were looking for, this error would show up.
content:
application/json:
schema:
$ref: '#/components/schemas/notFoundErrorlist'
/1.0/invoices:
get:
tags:
- Invoices
summary: Get all invoices
operationId: search-invoices
parameters:
- name: dateOfIssue.eq
in: query
description: Filter by date of issue (equals).
schema:
type: string
format: date
example: '2023-03-28'
- name: dateOfIssue.gt
in: query
description: Filter by date of issue greater than.
schema:
type: string
format: date
example: '2023-03-28'
- name: dateOfIssue.ge
in: query
description: Filter by date of issue greater than or equal.
schema:
type: string
format: date
example: '2023-03-28'
- name: dateOfIssue.lt
in: query
description: Filter by date of issue less than.
schema:
type: string
format: date
example: '2023-03-28'
- name: dateOfIssue.le
in: query
description: Filter by date of issue less than or equal.
schema:
type: string
format: date
example: '2023-03-28'
- name: dueDate.eq
in: query
description: Filter by due date (equals).
schema:
type: string
format: date
example: '2023-03-28'
- name: dueDate.gt
in: query
description: Filter by due date greater than.
schema:
type: string
format: date
example: '2023-03-28'
- name: dueDate.ge
in: query
description: Filter by due date greater than or equal.
schema:
type: string
format: date
example: '2023-03-28'
- name: dueDate.lt
in: query
description: Filter by due date less than.
schema:
type: string
format: date
example: '2023-03-28'
- name: dueDate.le
in: query
description: Filter by due date less than or equal.
schema:
type: string
format: date
example: '2023-03-28'
- name: amount.eq
in: query
description: Filter by amount (equals).
schema:
type: number
format: double
example: 1000
- name: amount.gt
in: query
description: Filter by amount greater than.
schema:
type: number
format: double
example: 1000
- name: amount.ge
in: query
description: Filter by amount greater than or equal.
schema:
type: number
format: double
example: 1000
- name: amount.lt
in: query
description: Filter by amount less than.
schema:
type: number
format: double
example: 1000
- name: amount.le
in: query
description: Filter by amount less than or equal.
schema:
type: number
format: double
example: 1000
- name: amountOutstanding.eq
in: query
description: Filter by amount outstanding (equals).
schema:
type: number
format: double
example: 500
- name: amountOutstanding.gt
in: query
description: Filter by amount outstanding greater than.
schema:
type: number
format: double
example: 500
- name: amountOutstanding.ge
in: query
description: Filter by amount outstanding greater than or equal.
schema:
type: number
format: double
example: 500
- name: amountOutstanding.lt
in: query
description: Filter by amount outstanding less than.
schema:
type: number
format: double
example: 500
- name: amountOutstanding.le
in: query
description: Filter by amount outstanding less than or equal.
schema:
type: number
format: double
example: 500
- name: amountPaid.eq
in: query
description: Filter by amount paid (equals).
schema:
type: number
format: double
example: 500
- name: amountPaid.gt
in: query
description: Filter by amount paid greater than.
schema:
type: number
format: double
example: 500
- name: amountPaid.ge
in: query
description: Filter by amount paid greater than or equal.
schema:
type: number
format: double
example: 500
- name: amountPaid.lt
in: query
description: Filter by amount paid less than.
schema:
type: number
format: double
example: 500
- name: amountPaid.le
in: query
description: Filter by amount paid less than or equal.
schema:
type: number
format: double
example: 500
- name: amountWrittenOff.eq
in: query
description: Filter by amount written off (equals).
schema:
type: number
format: double
example: 500
- name: amountWrittenOff.gt
in: query
description: Filter by amount written off greater than.
schema:
type: number
format: double
example: 500
- name: amountWrittenOff.ge
in: query
description: Filter by amount written off greater than or equal.
schema:
type: number
format: double
example: 500
- name: amountWrittenOff.lt
in: query
description: Filter by amount written off less than.
schema:
type: number
format: double
example: 500
- name: amountWrittenOff.le
in: query
description: Filter by amount written off less than or equal.
schema:
type: number
format: double
example: 500
- name: createdAt.gt
in: query
description: You can use this param to provide an epoch milli value and the responses will contain invoices whose date are greater than the given invoice created date.
schema:
type: integer
format: int64
example: 1625164800000
- name: createdAt.eq
in: query
description: You can use this param to provide an epoch milli value and the responses will contain exact matches of invoices that match the given invoice created date.
schema:
type: integer
format: int64
example: 1625164800000
- name: createdAt.lt
in: query
description: You can use this param to provide an epoch milli value and the responses will contain invoices whose date are less than the given invoice created date.
schema:
type: integer
format: int64
example: 1625164800000
- name: createdAt.ge
in: query
description: You can use this param to provide an epoch milli value and the responses will contain invoices whose date are greater than or equal to the given invoice created date.
schema:
type: integer
format: int64
example: 1625164800000
- name: createdAt.le
in: query
description: You can use this param to provide an epoch milli value and the responses will contain invoices whose date are less than or equal to the given invoice created date.
schema:
type: integer
format: int64
example: 1625164800000
- name: companyId.eq
in: query
description: You can use this param to provide a customer company id and the responses will contain exact matches of invoices that match the given customer company id.
schema:
type: string
example: 1
- name: companyId.oneOf
in: query
description: You can use this param to provide customer company ids separated by commas and the responses will contain matches of invoices that match any of the given customer company id.
schema:
type: string
example: 1,2,3
- name: companyId.noneOf
in: query
description: You can use this param to provide customer company id separated by commas and the responses will not contain matches of invoices that match the given set of customer company id.
schema:
type: string
example: 1,2,3
- name: invoiceNumber.eq
in: query
description: Filter by invoice number (equals).
schema:
type: string
example: INV-2024-001
- name: invoiceNumber.cn
in: query
description: You can use this param to specify some text and the responses will contain invoices that contain the given text in their invoice number
schema:
type: string
example: INV
- name: invoiceNumber.nc
in: query
description: You can use this param to specify some text and the responses will contain invoices that _DO NOT_ contain the given text in their invoice number
schema:
type: string
example: US-21
- name: status.eq
in: query
description: You can use this param to provide status and the responses will contain invoices that are equal to the given status
schema:
type: string
example: DRAFT
- name: status.oneOf
in: query
description: You can use this param to provide statuses and the responses will contain invoices that match one of the given statuses
schema:
type: string
example: DRAFT,PAID
- name: status.noneOf
in: query
description: You can use this param to provide statuses and the responses will contain invoices that matches none of the given statuses
schema:
type: string
example: DRAFT,PAID
- name: pageSize
in: query
description: This parameter sets the maximum number of responses to be displayed per page. If the page size is insufficient to accommodate the whole number of responses obtained, the pagination object will include a link to the next page as well as the next page token. If left blank, it defaults to 100.
schema:
minimum: 0
type: number
format: int32
example: 100
- name: pageToken
in: query
description: Use this parameter to specify the pageToken of a page to which you want to navigate. This pageToken can be obtained from a previous request which specified a limit and will only be active for 15 minutes after it is created.
schema:
type: string
example: 59c12a42-dd10-11ed-afa1-0242ac120002
- name: includeFields
in: query
description: This query parameter allows you to specify which fields should be returned in the response body by selecting from the drop down. To get the relevant fields, use comma separated values. If the field is left blank, the default properties are returned.
style: form
explode: false
schema:
type: array
items:
type: string
enum:
- notes
- attachments
- name: includeAllFields
in: query
description: This query parameter allows you to specify if all the fields should be returned in the response body. If the field is left blank, the default properties are returned.
schema:
type: boolean
example: true
- name: sortBy
in: query
description: You can use the sortBy param to sort the responses by the given field.
schema:
type: string
enum:
- createdAt
- invoiceNumber
- name: sortOrder
in: query
description: The sortOrder param can be used to specify the sorting order, which can be Ascending (ASC) or Descending (DESC). Descending is the default option.
schema:
type: string
enum:
- ASC
- DESC
- name: match
in: query
description: You can use the match param to specify if we need to filter the entries using either AND(all) / OR(any). Defaults to AND.
schema:
type: string
enum:
- all
- any
responses:
'200':
description: The requested action was successfully executed.
content:
application/json:
schema:
$ref: '#/components/schemas/ExampleAPIResponseInvoices'
'400':
description: This error typically happens when the request payload contains an error. If you want to make sure that the request's parameters are named correctly and are the right data types, you can examine the request's syntax.
content:
application/json:
schema:
$ref: '#/components/schemas/badRequestErrorlist'
'401':
description: You see this error when trying to access this resource without being authenticated. Check the API request header to make sure it is not empty and has a valid api-key that you acquired from the Rocketlane API Settings tab.
content:
application/json:
schema:
$ref: '#/components/schemas/unauthorizedErrorlist'
components:
schemas:
ExamplePaginationInvoicePayments:
type: object
properties:
pageSize:
type: integer
description: Denotes the page size mentioned in the current request (limit). It defaults to 100 if left blank.
format: int32
example: 100
hasMore:
type: boolean
description: Tells us if there is more content.
example: true
totalRecordCount:
type: integer
description: Denotes the total resources matching the filters.
format: int64
example: 10398
nextPage:
type: string
description: Denotes an API URL, which can be conveniently called to perform the subsequent search call to get to the next page.
example: https://api.rocketlane.com/api/1.0/invoices/123/payments?pageToken=e4a3dd8e-e338-11ed-b5ea-0242ac120002&limit=100
nextPageToken:
type: string
description: Denotes a unique token that points to the next page of resources. To get results from subsequent pages, you can use the nextPageToken available in the response under pagination. This token is valid for 15 minutes.
example: e4a3dd8e-e338-11ed-b5ea-0242ac120002
description: Responses that return multiple objects will be paginated. The pagination params define how pages are structured and how to traverse through pages.
Example404:
type: object
properties:
errorCode:
type: string
description: 'Error code refers to the type of error that you are facing. Some examples of error codes are: `BAD_REQUEST`, `NOT_FOUND`, `INTERNAL_SERVER_ERROR`.'
example: NOT_FOUND
errorMessage:
type: string
description: Error message describes in brief about the issue. You can read the error message to get a understanding of where the request went wrong and attempt to fix it.
example: 'Not Found: Resource not found for given ID'
unauthorizedErrorlist:
type: object
properties:
errors:
type: array
items:
$ref: '#/components/schemas/Example401'
CustomerCompanyProjectPublicResponse:
type: object
properties:
companyId:
minimum: 1
type: integer
description: The unique identifier for the customer company.
format: int64
example: 201
companyName:
type: string
description: The customer company name.
example: Acme Inc
companyUrl:
type: string
description: The URL of the client's website. Unless explicitly stated, the value for this field can be left blank.
example: https://www.acme.com
description: Company details for the invoice
badRequestErrorlist:
type: object
properties:
errors:
type: array
items:
$ref: '#/components/schemas/Example400'
ExamplePaginationInvoices:
type: object
properties:
pageSize:
type: integer
description: Denotes the page size mentioned in the current request (limit). It defaults to 100 if left blank.
format: int32
example: 100
hasMore:
type: boolean
description: Tells us if there is more content.
example: true
totalRecordCount:
type: integer
description: Denotes the total resources matching the filters.
format: int64
example: 10398
nextPage:
type: string
description: Denotes an API URL, which can be conveniently called to perform the subsequent search call to get to the next page.
example: https://api.rocketlane.com/api/1.0/invoices?pageToken=e4a3dd8e-e338-11ed-b5ea-0242ac120002&limit=100
nextPageToken:
type: string
description: Denotes a unique token that points to the next page of resources. To get results from subsequent pages, you can use the nextPageToken available in the response under pagination. This token is valid for 15 minutes.
example: e4a3dd8e-e338-11ed-b5ea-0242ac120002
description: Responses that return multiple objects will be paginated. The pagination params define how pages are structured and how to traverse through pages.
ProjectVendorUserPublicAPI:
type: object
properties:
emailId:
type: string
description: The team members email identifier.
example: john.doe@rocketlane.com
userId:
type: integer
description: The unique identifier for the user.
format: int64
example: 201
firstName:
type: string
description: The first name of the user.
readOnly: true
example: John
lastName:
type: string
description: The last name of the user.
readOnly: true
example: Doe
description: The team member who last updated the invoice
TaxComponentPublicAPIResponseEntity:
type: object
properties:
taxComponentId:
type: integer
description: The unique identifier for the tax component
format: int64
readOnly: true
example: 123
taxComponentName:
type: string
description: The name of the tax component
readOnly: true
example: GST
taxComponentRate:
type: number
description: The tax rate percentage for the tax component
readOnly: true
example: 18
taxComponentAmount:
type: number
description: The tax amount calculated for this tax component
readOnly: true
example: 180
taxComponentType:
type: string
description: The type of tax component (e.g., GST, VAT, etc.)
readOnly: true
example: GST
description: List of tax components that make up this tax code.
readOnly: true
Example400:
type: object
properties:
errorCode:
type: string
description: 'Error code refers to the type of error that you are facing. Some examples of error codes are: `BAD_REQUEST`, `NOT_FOUND`, `INTERNAL_SERVER_ERROR`.'
example: BAD_REQUEST
errorMessage:
type: string
description: Error message describes in brief about the issue. You can read the error message to get a understanding of where the request went wrong and attempt to fix it.
example: 'Bad Request: Minutes is negative'
field:
type: string
description: Fields refers to the parameter/field that was invalid in the request (if any). It will point you to the field that needs attention.
example: minutes
InvoiceProjectPublicAPIResponseEntity:
type: object
properties:
projectId:
minimum: 1
type: integer
description: The project's unique, system-generated identifier, which can be used to identify the project globally.
format: int64
readOnly: true
example: 201
projectName:
type: string
description: The name of the project.
example: Acme onboarding
description: List of projects mapped to this invoice
TaxCodePublicAPIResponseEntity:
type: object
properties:
taxCodeId:
type: integer
description: The unique identifier for the tax code
format: int64
readOnly: true
example: 456
taxCodeName:
type: string
description: The name of the tax code
readOnly: true
example: GST 18%
taxCodeRate:
type: number
description: The tax rate percentage for the tax code
readOnly: true
example: 18
taxCodeAmount:
type: number
description: The tax amount calculated for this tax code
readOnly: true
example: 180
description: Tax code information for this line item.
readOnly: true
InvoicePublicAPIResponseEntity:
type: object
properties:
invoiceId:
minimum: 1
type: integer
description: Unique identifier of the invoice
format: int64
readOnly: true
example: 201
invoiceNumber:
type: string
description: Invoice number assigned to this invoice
example: INV-2024-001
dateOfIssue:
type: string
description: Date when the invoice was issued. The format for the issue date is _YYYY-MM-DD_
example: '2023-03-28'
dueDate:
type: string
description: Due date for the invoice payment. The format for the due date is _YYYY-MM-DD_
example: '2023-03-28'
currency:
type: string
description: Currency of the invoice amount
readOnly: true
example: USD
enum:
- AFN
- ALL
- DZD
- ARS
- AMD
- AUD
- AZN
- BHD
- BDT
- BYN
- BZD
- BOB
- BAM
- BWP
- BRL
- GBP
- BND
- BGN
- BIF
- KHR
- CAD
- CVE
- XAF
- CLP
- CNY
- COP
- KMF
- CDF
- CRC
- HRK
- CZK
- DKK
- DJF
- DOP
- EGP
- ERN
- EEK
- ETB
- EUR
- GEL
- GHS
- GTQ
- GNF
- HNL
- HKD
- HUF
- ISK
- INR
- IDR
- IRR
- IQD
- ILS
- JMD
- JPY
- JOD
- KZT
- KES
- KWD
- LVL
- LBP
- LYD
- LTL
- MOP
- MKD
- MGA
- MYR
- MUR
- MXN
- MDL
- MAD
- MZN
- MMK
- NAD
- NPR
- TWD
- NZD
- NIO
- NGN
- NOK
- OMR
- PKR
- PAB
- PYG
- PEN
- PHP
- PLN
- QAR
- RON
- RUB
- RWF
- SAR
- RSD
- SGD
- SOS
- ZAR
- KRW
- LKR
- SDG
- SEK
- CHF
- SYP
- TZS
- THB
- TOP
- TTD
- TND
- TRY
- USD
- UGX
- UAH
- AED
- UYU
- UZS
- VEF
- VND
- XOF
- YER
-
# --- truncated at 32 KB (46 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/rocketlane/refs/heads/main/openapi/rocketlane-invoices-api-openapi.yml