{ "opencollection": "1.0.0", "info": { "name": "Scispot ELN Sequences API", "version": "1.0.0" }, "request": { "auth": { "type": "apikey", "key": "apiKey", "value": "{{apiKey}}", "placement": "header" } }, "items": [ { "info": { "name": "Sequences", "type": "folder" }, "items": [ { "info": { "name": "List Sequences", "type": "http" }, "http": { "method": "GET", "url": "https://api.scispot.com/v1/sequences", "params": [ { "name": "type", "value": "", "type": "query", "description": "Filter by sequence type" }, { "name": "page", "value": "", "type": "query", "description": "Page number for pagination" }, { "name": "limit", "value": "", "type": "query", "description": "Number of sequences per page" } ] }, "docs": "Retrieve a list of all biological sequences in the workspace. Sequences include DNA, RNA, and protein sequences with associated metadata, annotations, and links to experimental records." }, { "info": { "name": "Create Sequence", "type": "http" }, "http": { "method": "POST", "url": "https://api.scispot.com/v1/sequences", "body": { "type": "json", "data": "{}" } }, "docs": "Add a new biological sequence to the workspace. Supports DNA, RNA, protein, and chemical structure sequences with full annotation support." }, { "info": { "name": "Get Sequence", "type": "http" }, "http": { "method": "GET", "url": "https://api.scispot.com/v1/sequences/:sequenceId", "params": [ { "name": "sequenceId", "value": "", "type": "path", "description": "Unique identifier of the sequence" } ] }, "docs": "Retrieve a single biological sequence by its unique identifier." }, { "info": { "name": "Update Sequence", "type": "http" }, "http": { "method": "PUT", "url": "https://api.scispot.com/v1/sequences/:sequenceId", "params": [ { "name": "sequenceId", "value": "", "type": "path", "description": "Unique identifier of the sequence" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an existing biological sequence record." } ] } ], "bundled": true }