Skip to main content
GET
/
applications
/
{state}
/
state
Get applications by state
curl --request GET \
  --url http://localhost:4000/v1/applications/{state}/state \
  --header 'Authorization: <api-key>'
{
  "id_application": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
  "name": "John Doe",
  "email": "john@example.com",
  "telegram": "@johndoe",
  "twitter": "@johndoe",
  "project_name": "SuperProject",
  "explanation": "A project that changes the world.",
  "api_url": "https://api.superproject.io",
  "state": "pending",
  "created_at": "2025-05-18T15:22:10.000Z"
}

Authorizations

Authorization
string
header
required

Use this format: ApiKey <your_api_key>

Path Parameters

state
string
required

State to filter applications by

Example:

"pending"

Query Parameters

page
number
Example:

1

limit
number
Required range: 1 <= x <= 100000
Example:

10

Response

Applications retrieved successfully

id_application
string
required

Unique identifier for the application.

Example:

"f47ac10b-58cc-4372-a567-0e02b2c3d479"

name
string
required

Name of the applicant.

Example:

"John Doe"

email
string
required

Email address of the applicant.

Example:

"john@example.com"

telegram
object
required

Telegram handle of the applicant.

Example:

"@johndoe"

twitter
object
required

Twitter handle of the applicant.

Example:

"@johndoe"

project_name
string
required

Name of the project.

Example:

"SuperProject"

explanation
string
required

Explanation or pitch of the project.

Example:

"A project that changes the world."

api_url
string
required

Public API URL of the project.

Example:

"https://api.superproject.io"

state
enum<string>
required

Application state

Available options:
pending,
review,
approved,
rejected
Example:

"pending"

created_at
object
required

Date the application was created.

Example:

"2025-05-18T15:22:10.000Z"