API reference / ASO copy
Suggest competitors
/api/v1/aso/competitors/suggestParameters
Idempotency-Keyheaderrequiredstring
Persist this key for retries. Reusing it with changed input returns 409. Receipts are retained for at least 24 hours.
min length: 8 · max length: 128
projectIdqueryrequiredstring · uuid
Project ID. generationId is accepted as an alias on project-scoped GET requests.
Request body
application/json
appNamebodyrequiredstring
min length: 1 · max length: 200
appCategorybodyoptionalstring
max length: 200 · default: ""
appDescriptionbodyoptionalstring
max length: 5000
View complete request schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"appName": {
"type": "string",
"minLength": 1,
"maxLength": 200
},
"appCategory": {
"default": "",
"type": "string",
"maxLength": 200
},
"appDescription": {
"type": "string",
"maxLength": 5000
}
},
"required": [
"appName"
],
"additionalProperties": false
}Request example
Set ALF_API_URL to https://dashboard.applaunchflow.com/api/v1 and ALF_API_KEY to your key. Replace sample IDs with your project’s values. Use a new ALF_REQUEST_ID for each new operation.
curl --request POST \
--url "$ALF_API_URL/aso/competitors/suggest?projectId=11111111-1111-4111-8111-111111111111" \
--header "Authorization: Bearer $ALF_API_KEY" \
--header "Content-Type: application/json" \
--header "Idempotency-Key: $ALF_REQUEST_ID" \
--data '{
"appName": "string"
}'Response
Successful JSON responses wrap the result in data, with a request ID in meta.requestId.
searchTermsdatarequiredstring[]
reasoningdatarequiredstring
View response schema
{
"type": "object",
"required": [
"data",
"meta"
],
"properties": {
"data": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"searchTerms": {
"type": "array",
"items": {
"type": "string"
}
},
"reasoning": {
"type": "string"
}
},
"required": [
"searchTerms",
"reasoning"
]
},
"meta": {
"type": "object",
"required": [
"requestId"
],
"properties": {
"requestId": {
"type": "string",
"format": "uuid"
}
}
}
}
}Errors & retries
Errors use application/problem+json. Check the stable code and keep requestId when contacting support. Respect Retry-After on 429 responses.