Insight API
HomeContact Us
HomeContact Us
LinkedIn
Github
  1. Pulse AI
  • Getting Started with Insight
  • Example Requests
  • Recognition & Branding Requirements
  • Discovery
    • Generate New Discovery
      POST
    • Get a Specific Discovery
      GET
    • Get All Discoveries
      GET
  • Genres
    • Get Genres
      GET
  • Artists
    • Search Artists
      GET
    • Get a Specific Artist
      GET
  • Venues
    • Search Venues
      GET
    • Get a Specific Venue
      GET
  • Pulse AI
    • Chat Completions API
    • Get Models
      GET
    • Chat Completions Endpoint
      POST
    • Healthcheck
      GET
  1. Pulse AI

Get Models

Developing
GET
/v1/pulse/models
InsightDiscoveryArtist IntelligenceAI
OpenAI-compatible models listing endpoint.
This endpoint provides information about the available Pulse AI Research Agent models in a format compatible with OpenAI's API. It returns a list of models with their identifiers and metadata, allowing third-party clients to discover available models and their capabilities.
The response follows the OpenAI models format for maximum compatibility with existing tools and libraries designed for OpenAI's API.

Request

Header Params
x-app-id
string <password>
required
Default:
{{x-app-id}}
x-api-key
string <password>
required
Default:
{{x-api-key}}
Content-Type
string 
optional
Default:
application/json

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/pulse/models' \
--header 'x-app-id;' \
--header 'x-api-key;' \
--header 'Content-Type: application/json'

Responses

🟢200Success
application/json
Body
object
string 
required
data
array [object {4}] 
required
id
string 
optional
object
string 
optional
created
integer 
optional
owned_by
string 
optional
Examples
{
  "object": "list",
  "data": [
    {
      "id": "discovery-pulse-4v1",
      "object": "model",
      "created": 1712419980,
      "owned_by": "Lineup Technologies"
    }
  ]
}
🟠401Unauthorized
Previous
Chat Completions API
Next
Chat Completions Endpoint
Built with