InterPro Protein Families & Domains Scraper avatar

InterPro Protein Families & Domains Scraper

Pricing

from $0.50 / 1,000 results

Go to Apify Store
InterPro Protein Families & Domains Scraper

InterPro Protein Families & Domains Scraper

$0.5/1K ๐Ÿ”ฅ InterPro Domains! Fetch protein families, domains & functional signatures. No key. JSON, CSV, Excel or API in seconds. Annotate proteomes and functional predictions โšก

Pricing

from $0.50 / 1,000 results

Rating

0.0

(0)

Developer

ninhothedev

ninhothedev

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Share

Scrape protein families, domains, functional sites, GO terms and member-database signatures from InterPro โ€” the EBI resource that classifies proteins into families and predicts the presence of domains and important sites. No API key. No login. Just point it at a type, a search term, or a list of accessions.

InterPro integrates predictive signatures from member databases (Pfam, SMART, CDD, PROSITE, PRINTS, PANTHER and more) into a single classification of over 54,000 entries. This actor turns that into clean, structured JSON ready for annotation pipelines, spreadsheets, or downstream analysis.

Pricing: pay-as-you-go, roughly ~$0.5 per 1,000 entries scraped (plus Apify platform usage). The InterPro REST API is free.

What makes this different from my other biology actors

InterPro answers "what family/domain is this protein and what does it do?" โ€” it is the classification & functional annotation layer. That is a different question from the other scrapers on this account:

ActorAnswersLayer
InterPro (this one)Which families, domains & functional sites does a protein contain? GO terms, member DBsClassification / annotation
UniProt scraperWhat is the protein โ€” its sequence, names, function text, featuresSequence / knowledgebase
AlphaFold scraperWhat is its 3D structure (predicted model, pLDDT, PDB/CIF)Structure
Reactome scraperWhich pathways is it inPathways
STRING scraperWhich proteins does it interact withInteraction networks

In short: UniProt gives you the sequence, AlphaFold gives you the structure, and InterPro tells you which families and domains that sequence belongs to. Use them together.

Modes

  • entries โ€” browse/filter all InterPro entries, optionally by type (domain, family, site, ...).
  • search โ€” free-text query (e.g. "kinase", "zinc finger").
  • accessions โ€” resolve an explicit list of InterPro accessions (e.g. IPR000719) to full detail records with GO terms, counters and descriptions.

Input

FieldTypeDescription
modeselectentries (default), search, or accessions.
entryTypeselectany (default), family, domain, repeat, site, conserved_site, binding_site, active_site, ptm. Applies to entries and search.
queriesarraySearch terms for search mode, e.g. ["kinase", "zinc finger"].
accessionsarrayInterPro accession IDs for accessions mode, e.g. ["IPR000719"].
maxItemsintegerMax records to output (default 200, max 5000).

Example input

{
"mode": "accessions",
"accessions": ["IPR000719", "IPR011009"],
"maxItems": 200
}

Output

Each dataset item:

{
"type": "interpro_entry",
"accession": "IPR000719",
"name": "Protein kinase domain",
"entry_type": "domain",
"source_database": "interpro",
"description": "This entry represents the protein kinase domain ...",
"protein_count": 1949997,
"structure_count": 8165,
"taxa_count": 40328,
"go_terms": [{"id": "GO:0005524", "name": "ATP binding", "category": "molecular_function"}],
"go_term_count": 2,
"member_databases": ["profile", "pfam", "smart"],
"member_db_count": 3,
"integrated": null,
"literature_count": 10,
"url": "https://www.ebi.ac.uk/interpro/entry/InterPro/IPR000719/",
"source": "interpro",
"scraped_at": "2026-08-11T00:00:00Z"
}

All fields are nullable. Counters (protein_count, structure_count, taxa_count) and GO terms are richest in accessions mode, which fetches the full entry detail.

Use cases

  • Protein annotation โ€” attach family/domain and GO-term context to a list of accessions.
  • Functional genomics โ€” enrich gene/protein sets with functional-site classification.
  • Domain analysis โ€” pull every domain-type entry and its member-database signatures.
  • Bioinformatics pipelines โ€” a keyless, structured feed of InterPro classification for reproducible workflows.

Notes

  • Data ยฉ EMBL-EBI / InterPro, provided under their terms; this actor is an unofficial client of the public REST API.
  • Pagination uses InterPro cursor URLs; large runs page automatically until maxItems.