Synthego Order API

The Order API from Synthego — 3 operation(s) for order.

Operations 3

GET /pricing Retrieve current item pricing
POST /order/ Generate an order preview
GET /order/{order_request_id} Request the status of a given order

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/synthego-order-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

synthego-order-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Synthego Order API
  description: An API for 3rd party integration
  version: 1.0.0
servers:
- url: https://api.synthego.com/
tags:
- name: Order
paths:
  /pricing:
    get:
      security:
      - UserSecurity: []
      summary: Retrieve current item pricing
      description: The Item Pricing request is a transaction between the integrator and Synthego. The integrator accesses a URL with a valid api_key. Synthego returns the current pricing information for the products available via the Order Preview Request endpoint.
      tags:
      - Order
      responses:
        '200':
          description: The item pricing response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProductPricingInformation'
        '500':
          description: Unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
  /order/:
    post:
      security:
      - UserSecurity: []
      summary: Generate an order preview
      description: The Order Preview request is a transaction between the integrator and Synthego. The integrator provides a list of desired guide RNA sequences, a label for sequence, and the product type. Synthego returns an Order Preview response, containing an itemized list with per-item pricing for the guide RNA, a pre-shipping subtotal for the entire request, and a unique URL to redirect the customer to in order to complete the purchase transaction.
      tags:
      - Order
      responses:
        '200':
          description: An order preview response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrderPreviewResponse'
        '500':
          description: Unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OrderPreviewRequest'
        description: A list of items to add to a cart
        required: true
  /order/{order_request_id}:
    get:
      security:
      - UserSecurity: []
      summary: Request the status of a given order
      description: The Order Status request is a transaction between the integrator and Synthego. The integrator accesses a status URL with the Order Preview request identifier and valid api_key. Synthego returns the current status of the order and a URL that points to the status page located on Synthego’s eCommerce site.
      parameters:
      - name: order_request_id
        in: path
        required: true
        schema:
          type: string
      tags:
      - Order
      responses:
        '200':
          description: An order preview response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrderStatusResponse'
        '500':
          description: Unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    OrderItemEstimate:
      type: object
      properties:
        label:
          type: string
          description: Customer-defined name for the product
        sequence:
          type: string
          description: The IUPAC representation of an oligonucleotide
        product_type:
          type: string
          description: The Synthego product type
          enum:
          - ez_crRNA
          - ez_trRNA
          - ez_sgRNA
          - custom
        product_price:
          type: string
          description: The Synthego price estimate for this product
    OrderStatusResponse:
      type: object
      properties:
        api_key:
          type: string
          description: Api_key used to generate this request
        current_order_contents:
          type: array
          items:
            $ref: '#/components/schemas/OrderItemEstimate'
        initial_order:
          type: object
          description: Cached version of the initial order preview
          $ref: '#/components/schemas/OrderPreviewResponse'
        integrator_id:
          type: string
          description: Optional value provided by the integrator
        order_request_id:
          type: string
          description: Unique identifier traceable back to the OrderPreviewRequest
        status:
          type: string
          description: Current order status
        subtotal:
          type: number
          description: '[ISO 4217](http://en.wikipedia.org/wiki/ISO_4217) currency code.'
    OrderItemRequest:
      type: object
      properties:
        label:
          type: string
          description: Customer-defined name for the product
        sequence:
          type: string
          description: The IUPAC representation of an oligonucleotide
        product_type:
          type: string
          description: The Synthego product type, as given by the pricing endpoint
          enum:
          - ez_RNA_kit
          - ez_sgRNA_oligonucleotide
          - ez_sgRNA_oligonucleotide_modified
          - custom_RNA_50
          - custom_RNA_75
          - custom_RNA_100
    OrderPreviewResponse:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/OrderItemEstimate'
        order_request_id:
          type: string
          description: a unique identifier traceable back to the OrderPreviewRequest
        order_request_url:
          type: string
          description: a unique identifier traceable back to the OrderPreviewRequest
        subtotal:
          type: number
          description: '[ISO 4217](http://en.wikipedia.org/wiki/ISO_4217) currency code.'
        integrator_id:
          type: string
          description: An optional value provided by the integrator
        api_key:
          type: string
          description: the api_key used to generate this request
    ProductPricingInformation:
      type: object
      properties:
        available_products:
          type: array
          items:
            $ref: '#/components/schemas/ProductDescription'
    ProductDescription:
      type: object
      properties:
        product_item_price:
          type: number
          description: The product\'s list price in USD
        product_type:
          type: string
          description: A short product identifier
        product_name:
          type: string
          description: A human-readable product name
    Error:
      type: object
      properties:
        message:
          type: string
    OrderPreviewRequest:
      type: object
      properties:
        integrator_id:
          type: string
          description: An optional value provided by the integrator
        items:
          type: array
          items:
            $ref: '#/components/schemas/OrderItemRequest'
  securitySchemes:
    UserSecurity:
      type: apiKey
      in: header
      name: SYNTHEGOAPIKEY