Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request POST \
--url https://cloudlab.scispot.io/sequence/new \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"sequenceData": "<string>",
"proteinSequenceData": "<string>",
"type": "<string>",
"circular": true,
"size": 123,
"cutsites": [
{}
],
"orfs": [
{}
],
"translations": [
{}
],
"primers": [
{}
],
"guides": [
{}
],
"annotations": [
{}
]
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
sequenceData: '<string>',
proteinSequenceData: '<string>',
type: '<string>',
circular: true,
size: 123,
cutsites: [{}],
orfs: [{}],
translations: [{}],
primers: [{}],
guides: [{}],
annotations: [{}]
})
};
fetch('https://cloudlab.scispot.io/sequence/new', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://cloudlab.scispot.io/sequence/new"
payload = {
"name": "<string>",
"sequenceData": "<string>",
"proteinSequenceData": "<string>",
"type": "<string>",
"circular": True,
"size": 123,
"cutsites": [{}],
"orfs": [{}],
"translations": [{}],
"primers": [{}],
"guides": [{}],
"annotations": [{}]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"uuid": "<string>",
"success": true
}{
"success": false,
"message": "Invalid Authentication Token"
}{
"success": false,
"message": "Missing Authentication Token"
}{
"success": false,
"message": "Validation error"
}{
"success": false,
"message": "Operation failed"
}API-v2 controller requires name and sequenceData; legacy service can also accept proteinSequenceData.
curl --request POST \
--url https://cloudlab.scispot.io/sequence/new \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"sequenceData": "<string>",
"proteinSequenceData": "<string>",
"type": "<string>",
"circular": true,
"size": 123,
"cutsites": [
{}
],
"orfs": [
{}
],
"translations": [
{}
],
"primers": [
{}
],
"guides": [
{}
],
"annotations": [
{}
]
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
sequenceData: '<string>',
proteinSequenceData: '<string>',
type: '<string>',
circular: true,
size: 123,
cutsites: [{}],
orfs: [{}],
translations: [{}],
primers: [{}],
guides: [{}],
annotations: [{}]
})
};
fetch('https://cloudlab.scispot.io/sequence/new', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://cloudlab.scispot.io/sequence/new"
payload = {
"name": "<string>",
"sequenceData": "<string>",
"proteinSequenceData": "<string>",
"type": "<string>",
"circular": True,
"size": 123,
"cutsites": [{}],
"orfs": [{}],
"translations": [{}],
"primers": [{}],
"guides": [{}],
"annotations": [{}]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"uuid": "<string>",
"success": true
}{
"success": false,
"message": "Invalid Authentication Token"
}{
"success": false,
"message": "Missing Authentication Token"
}{
"success": false,
"message": "Validation error"
}{
"success": false,
"message": "Operation failed"
}Personal access token from Scispot Account → Personal Tokens
