promptmate.io API
  1. app-results
promptmate.io API
  • apps
    • Lists apps
      GET
    • Get app
      GET
  • app-jobs
    • Create a new app job
      POST
    • Get job status and result
      GET
  • templates
    • Lists templates
      GET
    • Use a specific template
      POST
  • reference
    • Lists available languages
      GET
    • Lists available countries
      GET
  • projects
    • Lists projects
      GET
  • webhooks
    • Lists webhooks
      GET
    • Creates a webhook
      POST
    • Deletes a webhook
      DELETE
  • app-results
    • Get last result rows of an app (e.g. as examples)
      GET
  • userInfo
    • get user information
      GET
  1. app-results

Get last result rows of an app (e.g. as examples)

GET
https://api.promptmate.io/v1/app-results
app-results
Returns the last result rows of a specific app for the user which the API Key belongs to. Rate limit is 100 requests per minute.

Request

Authorization
Add parameter in header
x-api-key
Example:
x-api-key: ********************
Query Params
appId
string 
required
onlyDefaultResultFields
boolean 
optional
Return only the default result fields (if set)
Default:
true
limit
boolean 
optional
Limit to the last x rows
Default:
20
Header Params
x-api-key
string 
required
Example:
YOUR_API_KEY
User-Agent
string 
optional
Example:
promptmate.io

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 'https://api.promptmate.io/v1/app-results?appId' \
--header 'x-api-key;'

Responses

🟢200OK
application/json
Result rows
Body
appId
string 
optional
Application identifier associated with the result.
resultData
array [object {1}] 
optional
Array of result objects with dynamic fields and values. This field is optional and is only returned after the job has finished.
Additional properties
string 
optional
responseFields
array [object] 
optional
List of data fields returned by the app.
Example
{
    "appId": "string",
    "resultData": [
        {
            "property1": "string",
            "property2": "string"
        }
    ],
    "responseFields": [
        {}
    ]
}
🟠404Record Not Found
🔴500Server Error
Previous
Deletes a webhook
Next
get user information
Built with