Fastino
  • Playground
  • Community
  • Blog
  • GET STARTED
    • Quickstart
    • Use the API
    • Rate Limits
    • Privacy Mode
    • GPU / CPU
  • Models
    • Classification
    • PII
    • Information Extraction
    • Text to JSON (experimental)
    • Function Calling (experimental)
  • Summarizaton (experimental)
  • Profanity Censor (experimental)
Powered by GitBook
On this page
  • Welcome to Fastino!
  • Start Building
  1. GET STARTED

Quickstart

NextUse the API

Last updated 1 day ago

Welcome to Fastino!

Task-Specific Language Models for AI developers 🦊

Make your first API request in minutes. Learn the basics of the Fastino platform.

curl -X POST "https://api.fastino.com/run" \
-H "x-api-key: fstn_sk_••••••••••" \
-H "Content-Type: application/json" \
-d '{
  "model_id": "fastino-pii-••••••••••",
  "input": [
    {
      "text": "9 AM for a Sedan for Jamie Derran",
      "parameters": {
        "entity_types": [
          "full_name",
          "car",
          "time"
        ],
        "threshold": 0.3
      }
    }
  ]
}'
import requests

url = "https://api.fastino.com/run"
const apiKey = "<api_key>";

const headers = {
  "x-api-key": apiKey,
  "Content-Type": "application/json"
};

data = {
    "model_id": "fastino-pii",
    "input": [
    {
      "text": "9 AM for a Sedan for Jamie Derran",
      "parameters": {
        "entity_types": [
          "full_name",
          "car",
          "time"
        ],
        "threshold": 0.3
      }
    }
  ]
}

response = requests.post(url, headers=headers, json=data)

# Print the response
print(response.status_code, response.json())
const url = "https://api.fastino.com/run";
const apiKey = "<api_key>";

const headers = {
  "x-api-key": apiKey,
  "Content-Type": "application/json"
};

const data = {
  model_id: "fastino-multilingual-data-structuring-1741723643",
input: [{
    text: "9 AM for a Sedan for Jamie Derran", // Required
    parameters: {
      entity_types: ["full_name", "car","time"], // Optional, will use your defaults.
    }
  }]
};

fetch(url, {
  method: "POST",
  headers: headers,
  body: JSON.stringify(data)
})
  .then(response => response.json())
  .then(data => console.log("Response:", data))
  .catch(error => console.error("Error:", error));

Start Building

Check that you have replaced the api key and endpoint id with a key and endpoint generated inside the platform () — see Use the API for details.

Check that you have replaced the api key and endpoint id with a key and endpoint generated inside the platform () — see Use the API for details.

Check that you have replaced the api key and endpoint id with a key and endpoint generated inside the platform () — see Use the API for details.

https://labs.fastino.ai
https://labs.fastino.ai
https://labs.fastino.ai
Use the API