Lines

Proxyless client for integrating 3rd party APIs

Infrastructure that consists of unified SDK, catalog of metadata and communication protocol that abstract API calls into application use cases.

Superface allows your app to directly integrate with any 3rd party API provider within minutes.

Lines

Explore available integrations

Open-source integrations

Explore the free use cases basically any app has to have to function today. Send e-mails or SMS, manage contacts in CRMs, control social media accounts and more.

Explore catalog

Premium integrations

Need more complex use case such as fetching all the candidates from various ATS platforms or syncing your internal database with multiple CRMs? Get in touch!

Get demo

Powered by Comlink

To make Superface possible to work on any use case, we’ve developed our own communication protocol for abstracting any 3rd party API into a business use case you need. Interested in how things work in the background too? Schedule a technical demo with us.

Interface definition

"""

Face Detection

Detects faces on publicly-accessible image URL

"""

usecase FaceDetection {

 input {

  """

  Image URL

  Publicly-accessible image URL

  """

  imageUrl! string!

 }

 result [{

  faces! [{

   faceRectangle! faceRectangle!

   landmarks! [landmark]!

   emotions! emotions!

  }]!

 }]!

}

API map

"""

FaceDetection map

"""

map FaceDetection {

 http POST "/v1/images:annotate" {

  security "google-api-key"

  request {

    headers {

     "Content-Type" = "application/json"

    }

    body {

     requests = [{

      features: [

       {

        maxResults: 1,

        type: "FACE_DETECTION"

       }

      ],

      image: {

        source: {

        imageUri: input.imageUrl

       }

      }

     }]

    }

  }

 }

}

Join the community

Support us on GitHub by opening issue, PR or just stargaze

Contribute

Join our Discord, ask questions or request a use case

Chat
Lines

Integrate any 3rd party API within minutes. Use Superface.

Get demo

© 2023 Superface