Discover/cellsignal.com API
live

cellsignal.com APIwww.cellsignal.com

Search and retrieve antibody, kit, and reagent data from Cell Signaling Technology. Access product specs, targets, UniProt IDs, and SKUs by keyword or catalog number.

Endpoints
2
Updated
3h ago
Try it
Page number for pagination, starting at 1.
Search query - can be a keyword (e.g. 'p53'), target name, or catalog number (e.g. '9664').
Number of results per page, between 1 and 100.
api.parse.bot/scraper/a514c6df-09cc-44a4-857e-cf80a9a164e7/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X POST 'https://api.parse.bot/scraper/a514c6df-09cc-44a4-857e-cf80a9a164e7/search_products' \
  -H 'X-API-Key: $PARSE_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
  "query": "9664",
  "page_size": "3"
}'
All endpoints · 2 totalclick to expand

Search for products by keyword, target name, or catalog number. Returns paginated results with summary product information including name, applications, species reactivity, and more.

Input
ParamTypeDescription
pageintegerPage number for pagination, starting at 1.
queryrequiredstringSearch query - can be a keyword (e.g. 'p53'), target name, or catalog number (e.g. '9664').
page_sizeintegerNumber of results per page, between 1 and 100.
Response
{
  "type": "object",
  "fields": {
    "page": "integer current page number",
    "total": "integer total number of matching products",
    "results": "array of product summaries with catalog_number, name, categories, applications, host_species, species_reactivity, product_type, conjugation_type, is_xp, is_recombinant, citation_count, skus, and url",
    "page_size": "integer number of results per page"
  },
  "sample": {
    "data": {
      "page": 1,
      "total": 187,
      "results": [
        {
          "url": "https://www.cellsignal.com/products/primary-antibodies/p53-1c12-mouse-monoclonal-antibody/2524",
          "name": "p53 (1C12) Mouse Monoclonal Antibody",
          "skus": [
            "2524T",
            "2524S",
            "2524L"
          ],
          "is_xp": false,
          "categories": [
            "Primary Antibodies"
          ],
          "applications": [
            "Western Blotting",
            "Immunoprecipitation",
            "Immunofluorescence (Immunocytochemistry)",
            "Flow Cytometry (Fixed/Permeabilized)",
            "Chromatin IP"
          ],
          "host_species": "Mouse",
          "product_type": "Monoclonal Antibody",
          "catalog_number": "2524",
          "citation_count": 1698,
          "is_recombinant": false,
          "conjugation_type": "Unconjugated",
          "species_reactivity": [
            "Human",
            "Mouse",
            "Rat",
            "Hamster",
            "Monkey"
          ]
        }
      ],
      "page_size": 2
    },
    "status": "success"
  }
}

About the cellsignal.com API

The Cell Signaling Technology API provides 2 endpoints to search and retrieve detailed product data from cellsignal.com's catalog of antibodies, kits, and reagents. Use search_products to run keyword or catalog-number queries across the full product catalog, or call get_product with a specific catalog number to retrieve fields like UniProt IDs, clone ID, species reactivity, sensitivity description, research area categories, and available SKUs.

Searching the Product Catalog

The search_products endpoint accepts a required query string — a keyword such as p53, a target name, or a catalog number like 9664 — and returns paginated summaries. Pagination is controlled via page (starting at 1) and page_size (1–100). Each result in the results array includes summary product information: name, applications, and species reactivity. The total field tells you how many records match so you can page through the full result set programmatically.

Retrieving Full Product Details

The get_product endpoint takes a catalog_number string and returns a single product object with all available metadata. Response fields include name, url, status, sensitivity, clone_id, is_xp (indicating XP-grade antibody status), targets (an array of target gene information), categories (research areas), skus (available product sizes and formats), and image_count. The targets array includes associated UniProt IDs, making it straightforward to cross-reference against protein databases.

Data Coverage

The API covers CST's published catalog — antibodies, phospho-specific variants, kits, and reagents. Fields like status reflect current product availability, and skus surfaces the purchasable configurations for a given catalog number. The is_xp boolean flags products in CST's XP antibody line, which carry additional validation criteria. All data corresponds to what is publicly listed on cellsignal.com.

Common use cases
  • Look up antibody clone IDs and UniProt targets for a panel of catalog numbers to build a standardized reagent table.
  • Search by gene name (e.g., EGFR, AKT1) to enumerate all CST products targeting that protein, then filter by species reactivity.
  • Check real-time product status for a list of catalog numbers to identify discontinued or limited-availability reagents.
  • Retrieve skus arrays to compare available sizes and formats before ordering.
  • Cross-reference targets UniProt IDs against an internal protein interaction database to flag which CST products cover your pathway.
  • Pull categories and research area tags to organize CST products by research focus for a lab inventory system.
  • Identify all XP-grade antibodies (is_xp: true) in a keyword search to prioritize highly validated reagents.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Cell Signaling Technology offer an official developer API?+
CST does not publish a public developer API or documented REST interface for programmatic catalog access. This Parse API provides structured access to their public product catalog.
What does `get_product` return that `search_products` does not?+
search_products returns lightweight summaries suited for browsing — name, applications, and species reactivity. get_product returns the full record: sensitivity, clone_id, is_xp, targets with UniProt IDs, categories, skus, image_count, and status. Use search_products to discover catalog numbers, then get_product to fetch the complete specification for each.
Does the API return protocol documents, citations, or application-specific validation images?+
Not currently. The API covers product metadata, SKUs, targets, categories, and availability status. The image_count field indicates how many images exist for a product, but image files and protocol PDFs are not returned. You can fork this API on Parse and revise it to add an endpoint that retrieves those assets.
How does pagination work in `search_products`?+
Pass page (integer, starting at 1) and page_size (1–100) alongside your query. The response includes total, page, and page_size so you can calculate the number of pages and iterate through the full result set.
Does the API cover products from other vendors or only CST's own catalog?+
The API covers only Cell Signaling Technology's own catalog at cellsignal.com. Third-party or partner products listed elsewhere are not included. You can fork this API on Parse and revise it to point to additional life science vendor catalogs.
Page content last updated . Spec covers 2 endpoints from www.cellsignal.com.
Related APIs in HealthcareSee all →
ncbi.nlm.nih.gov API
Search and retrieve biomedical literature from NCBI databases including PubMed, PubMed Central, and MeSH. Supports full-text extraction, metadata lookup, and research filtering.
pubmed.ncbi.nlm.nih.gov API
Search and retrieve biomedical literature from PubMed and NCBI databases. Supports keyword search, advanced field-tag queries, clinical filters, citation matching, date filtering, publication type filtering, and direct E-utilities access.
drugs.com API
Search for drugs and pill identifications, get detailed information about FDA approvals and drug interactions, and find medications by condition or letter. Look up side effects, dosages, and potential drug interactions to make informed health decisions.
pmc.ncbi.nlm.nih.gov API
Search millions of full-text biomedical research articles and access their metadata, citations, and related papers from PubMed Central. Find articles by topic, discover similar research, explore journal collections, and retrieve detailed citation information to support your literature review and research.
clinicaltrials.gov API
Search and retrieve comprehensive information about clinical trials worldwide, including study details, eligibility criteria, locations, and outcomes data. Access structured metadata and statistics to find relevant research studies matching your specific medical conditions or research interests.
blast.ncbi.nlm.nih.gov API
Compare DNA and protein sequences against NCBI's massive biological databases to find matching sequences and analyze genetic similarities. Submit alignment jobs, monitor their progress, and retrieve detailed results in structured format to support genomics research and sequence analysis.
zocdoc.com API
Search for doctors and medical practices on Zocdoc by specialty and location. Retrieve provider profiles, accepted insurance, office locations, patient reviews, and appointment availability.
mayocliniclabs.com API
Search and browse Mayo Clinic Laboratories' medical test catalog to retrieve detailed information on thousands of available tests, including descriptions, specimen requirements, clinical and interpretive data, performance characteristics, fees and codes, and setup details. Use autocomplete and alphabetical browsing to quickly locate specific tests or explore the full catalog.
Cell Signaling Technology API | cellsignal.com · Parse